Type: object
Initializer describes the name and the failure policy of an initializer, and what resources it applies to.

Type: string
Name is the identifier of the initializer. It will be added to the object that needs to be initialized. Name should be fully qualified, e.g., alwayspullimages.kubernetes.io, where "alwayspullimages" is the name of the webhook, and kubernetes.io is the name of the organization. Required

Type: array
Rules describes what resources/subresources the initializer cares about. The initializer cares about an operation if it matches _any_ Rule. Rule.Resources must not include subresources. No Additional Items

Each item of this array must be:

Type: object
Rule is a tuple of APIGroups, APIVersion, and Resources.It is recommended to make sure that all the tuple expansions are valid.

Type: array of string
APIGroups is the API groups the resources belong to. '*' is all groups. If '*' is present, the length of the slice must be one. Required. No Additional Items

Each item of this array must be:

Type: array of string
APIVersions is the API versions the resources belong to. '*' is all versions. If '*' is present, the length of the slice must be one. Required. No Additional Items

Each item of this array must be:

Type: array of string
Resources is a list of resources this rule applies to. For example: 'pods' means pods. 'pods/log' means the log subresource of pods. '*' means all resources, but not subresources. 'pods/*' means all subresources of pods. '*/scale' means all scale subresources. '*/*' means all resources and their subresources. If wildcard is present, the validation rule will ensure resources do not overlap with each other. Depending on the enclosing object, subresources might not be allowed. Required.
No Additional Items

Each item of this array must be:

Type: object
InitializerConfiguration describes the configuration of initializers.

Type: string
APIVersion defines the versioned schema of this representation of an object. Servers should convert recognized schemas to the latest internal value, and may reject unrecognized values. More info: https://git.k8s.io/community/contributors/devel/api-conventions.md#resources

Type: array
Initializers is a list of resources and their default initializers Order-sensitive. When merging multiple InitializerConfigurations, we sort the initializers from different InitializerConfigurations by the name of the InitializerConfigurations; the order of the initializers from the same InitializerConfiguration is preserved. No Additional Items

Each item of this array must be:

Type: object
Initializer describes the name and the failure policy of an initializer, and what resources it applies to.Same definition as oneOf_i0

Type: enum (of string)
Kind is a string value representing the REST resource this object represents. Servers may infer this from the endpoint the client submits requests to. Cannot be updated. In CamelCase. More info: https://git.k8s.io/community/contributors/devel/api-conventions.md#types-kinds

Must be one of:

  • "InitializerConfiguration"

Type: object
Standard object metadata; More info: https://git.k8s.io/community/contributors/devel/api-conventions.md#metadata.

Type: object
Annotations is an unstructured key value map stored with a resource that may be set by external tools to store and retrieve arbitrary metadata. They are not queryable and should be preserved when modifying objects. More info: http://kubernetes.io/docs/user-guide/annotations

Each additional property must conform to the following schema

Type: string

Type: string
The name of the cluster which the object belongs to. This is used to distinguish resources with same name and namespace in different clusters. This field is not set anywhere right now and apiserver is going to ignore it if set in create or update request.

Type: string
CreationTimestamp is a timestamp representing the server time when this object was created. It is not guaranteed to be set in happens-before order across separate operations. Clients may not set this value. It is represented in RFC3339 form and is in UTC. Populated by the system. Read-only. Null for lists. More info: https://git.k8s.io/community/contributors/devel/api-conventions.md#metadata

Type: integerFormat: int64
Number of seconds allowed for this object to gracefully terminate before it will be removed from the system. Only set when deletionTimestamp is also set. May only be shortened. Read-only.

Type: string
DeletionTimestamp is RFC 3339 date and time at which this resource will be deleted. This field is set by the server when a graceful deletion is requested by the user, and is not directly settable by a client. The resource is expected to be deleted (no longer visible from resource lists, and not reachable by name) after the time in this field, once the finalizers list is empty. As long as the finalizers list contains items, deletion is blocked. Once the deletionTimestamp is set, this value may not be unset or be set further into the future, although it may be shortened or the resource may be deleted prior to this time. For example, a user may request that a pod is deleted in 30 seconds. The Kubelet will react by sending a graceful termination signal to the containers in the pod. After that 30 seconds, the Kubelet will send a hard termination signal (SIGKILL) to the container and after cleanup, remove the pod from the API. In the presence of network partitions, this object may still exist after this timestamp, until an administrator or automated process can determine the resource is fully terminated. If not set, graceful deletion of the object has not been requested. Populated by the system when a graceful deletion is requested. Read-only. More info: https://git.k8s.io/community/contributors/devel/api-conventions.md#metadata
Same definition as creationTimestamp

Type: array of string
Must be empty before the object is deleted from the registry. Each entry is an identifier for the responsible component that will remove the entry from the list. If the deletionTimestamp of the object is non-nil, entries in this list can only be removed. No Additional Items

Each item of this array must be:

Type: string
GenerateName is an optional prefix, used by the server, to generate a unique name ONLY IF the Name field has not been provided. If this field is used, the name returned to the client will be different than the name passed. This value will also be combined with a unique suffix. The provided value has the same validation rules as the Name field, and may be truncated by the length of the suffix required to make the value unique on the server. If this field is specified and the generated name exists, the server will NOT return a 409 - instead, it will either return 201 Created or 500 with Reason ServerTimeout indicating a unique name could not be found in the time allotted, and the client should retry (optionally after the time indicated in the Retry-After header). Applied only if Name is not specified. More info: https://git.k8s.io/community/contributors/devel/api-conventions.md#idempotency

Type: integerFormat: int64
A sequence number representing a specific generation of the desired state. Populated by the system. Read-only.

Type: object
An initializer is a controller which enforces some system invariant at object creation time. This field is a list of initializers that have not yet acted on this object. If nil or empty, this object has been completely initialized. Otherwise, the object is considered uninitialized and is hidden (in list/watch and get calls) from clients that haven't explicitly asked to observe uninitialized objects. When an object is created, the system will populate this list with the current set of initializers. Only privileged users may set or modify this list. Once it is empty, it may not be modified further by any user.

Type: array
Pending is a list of initializers that must execute in order before this object is visible. When the last pending initializer is removed, and no failing result is set, the initializers struct will be set to nil and the object is considered as initialized and visible to all clients. No Additional Items

Each item of this array must be:

Type: object
Initializer is information about an initializer that has not yet completed.

Type: string
name of the process that is responsible for initializing this object.

Type: object
If result is set with the Failure field, the object will be persisted to storage and then deleted, ensuring that other clients can observe the deletion.

Type: string
APIVersion defines the versioned schema of this representation of an object. Servers should convert recognized schemas to the latest internal value, and may reject unrecognized values. More info: https://git.k8s.io/community/contributors/devel/api-conventions.md#resources

Type: integerFormat: int32
Suggested HTTP return code for this status, 0 if not set.

Type: object
Extended data associated with the reason. Each reason may define its own extended details. This field is optional and the data returned is not guaranteed to conform to any schema except that defined by the reason type.

Type: array
The Causes array includes more details associated with the StatusReason failure. Not all StatusReasons may provide detailed causes. No Additional Items

Each item of this array must be:

Type: object
StatusCause provides more information about an api.Status failure, including cases when multiple errors are encountered.

Type: string
The field of the resource that has caused this error, as named by its JSON serialization. May include dot and postfix notation for nested attributes. Arrays are zero-indexed. Fields may appear more than once in an array of causes due to fields having multiple errors. Optional. Examples: "name" - the field "name" on the current resource "items[0].name" - the field "name" on the first array entry in "items"

Type: string
A human-readable description of the cause of the error. This field may be presented as-is to a reader.

Type: string
A machine-readable description of the cause of the error. If this value is empty there is no information available.

Type: string
The group attribute of the resource associated with the status StatusReason.

Type: string
The kind attribute of the resource associated with the status StatusReason. On some operations may differ from the requested resource Kind. More info: https://git.k8s.io/community/contributors/devel/api-conventions.md#types-kinds

Type: string
The name attribute of the resource associated with the status StatusReason (when there is a single name which can be described).

Type: integerFormat: int32
If specified, the time in seconds before the operation should be retried. Some errors may indicate the client must take an alternate action - for those errors this field may indicate how long to wait before taking the alternate action.

Type: string
UID of the resource. (when there is a single resource which can be described). More info: http://kubernetes.io/docs/user-guide/identifiers#uids

Type: enum (of string)
Kind is a string value representing the REST resource this object represents. Servers may infer this from the endpoint the client submits requests to. Cannot be updated. In CamelCase. More info: https://git.k8s.io/community/contributors/devel/api-conventions.md#types-kinds

Must be one of:

  • "Status"

Type: string
A human-readable description of the status of this operation.

Type: object
Standard list metadata. More info: https://git.k8s.io/community/contributors/devel/api-conventions.md#types-kinds

Type: string
continue may be set if the user set a limit on the number of items returned, and indicates that the server has more data available. The value is opaque and may be used to issue another request to the endpoint that served this list to retrieve the next set of available objects. Continuing a consistent list may not be possible if the server configuration has changed or more than a few minutes have passed. The resourceVersion field returned when using this continue value will be identical to the value in the first response, unless you have received this token from an error message.

Type: string
String that identifies the server's internal version of this object that can be used by clients to determine when objects have changed. Value must be treated as opaque by clients and passed unmodified back to the server. Populated by the system. Read-only. More info: https://git.k8s.io/community/contributors/devel/api-conventions.md#concurrency-control-and-consistency

Type: string
A machine-readable description of why this operation is in the "Failure" status. If this value is empty there is no information available. A Reason clarifies an HTTP status code but does not override it.

Type: string
Status of the operation. One of: "Success" or "Failure". More info: https://git.k8s.io/community/contributors/devel/api-conventions.md#spec-and-status

Type: object
Map of string keys and values that can be used to organize and categorize (scope and select) objects. May match selectors of replication controllers and services. More info: http://kubernetes.io/docs/user-guide/labels

Each additional property must conform to the following schema

Type: string

Type: string
Name must be unique within a namespace. Is required when creating resources, although some resources may allow a client to request the generation of an appropriate name automatically. Name is primarily intended for creation idempotence and configuration definition. Cannot be updated. More info: http://kubernetes.io/docs/user-guide/identifiers#names

Type: string
Namespace defines the space within each name must be unique. An empty namespace is equivalent to the "default" namespace, but "default" is the canonical representation. Not all objects are required to be scoped to a namespace - the value of this field for those objects will be empty. Must be a DNS_LABEL. Cannot be updated. More info: http://kubernetes.io/docs/user-guide/namespaces

Type: array
List of objects depended by this object. If ALL objects in the list have been deleted, this object will be garbage collected. If this object is managed by a controller, then an entry in this list will point to this controller, with the controller field set to true. There cannot be more than one managing controller. No Additional Items

Each item of this array must be:

Type: object
OwnerReference contains enough information to let you identify an owning object. An owning object must be in the same namespace as the dependent, or be cluster-scoped, so there is no namespace field.

Type: string
API version of the referent.

Type: boolean
If true, AND if the owner has the "foregroundDeletion" finalizer, then the owner cannot be deleted from the key-value store until this reference is removed. Defaults to false. To set this field, a user needs "delete" permission of the owner, otherwise 422 (Unprocessable Entity) will be returned.

Type: boolean
If true, this reference points to the managing controller.

Type: string
Kind of the referent. More info: https://git.k8s.io/community/contributors/devel/api-conventions.md#types-kinds

Type: string
Name of the referent. More info: http://kubernetes.io/docs/user-guide/identifiers#names

Type: string
UID of the referent. More info: http://kubernetes.io/docs/user-guide/identifiers#uids

Type: string
An opaque value that represents the internal version of this object that can be used by clients to determine when objects have changed. May be used for optimistic concurrency, change detection, and the watch operation on a resource or set of resources. Clients must treat these values as opaque and passed unmodified back to the server. They may only be valid for a particular resource or set of resources. Populated by the system. Read-only. Value must be treated as opaque by clients and . More info: https://git.k8s.io/community/contributors/devel/api-conventions.md#concurrency-control-and-consistency

Type: string
UID is the unique in time and space value for this object. It is typically generated by the server on successful creation of a resource and is not allowed to change on PUT operations. Populated by the system. Read-only. More info: http://kubernetes.io/docs/user-guide/identifiers#uids
Type: object
InitializerConfigurationList is a list of InitializerConfiguration.

Type: string
APIVersion defines the versioned schema of this representation of an object. Servers should convert recognized schemas to the latest internal value, and may reject unrecognized values. More info: https://git.k8s.io/community/contributors/devel/api-conventions.md#resources

Type: array
List of InitializerConfiguration. No Additional Items

Each item of this array must be:

Type: object
InitializerConfiguration describes the configuration of initializers.Same definition as oneOf_i1

Type: enum (of string)
Kind is a string value representing the REST resource this object represents. Servers may infer this from the endpoint the client submits requests to. Cannot be updated. In CamelCase. More info: https://git.k8s.io/community/contributors/devel/api-conventions.md#types-kinds

Must be one of:

  • "InitializerConfigurationList"

Type: object
Standard list metadata. More info: https://git.k8s.io/community/contributors/devel/api-conventions.md#types-kindsSame definition as metadata
Type: object
Rule is a tuple of APIGroups, APIVersion, and Resources.It is recommended to make sure that all the tuple expansions are valid.Same definition as oneOf_i0_rules_items
Type: object
MutatingWebhookConfiguration describes the configuration of and admission webhook that accept or reject and may change the object.

Type: string
APIVersion defines the versioned schema of this representation of an object. Servers should convert recognized schemas to the latest internal value, and may reject unrecognized values. More info: https://git.k8s.io/community/contributors/devel/api-conventions.md#resources

Type: enum (of string)
Kind is a string value representing the REST resource this object represents. Servers may infer this from the endpoint the client submits requests to. Cannot be updated. In CamelCase. More info: https://git.k8s.io/community/contributors/devel/api-conventions.md#types-kinds

Must be one of:

  • "MutatingWebhookConfiguration"

Type: object
Standard object metadata; More info: https://git.k8s.io/community/contributors/devel/api-conventions.md#metadata.Same definition as metadata

Type: array
Webhooks is a list of webhooks and the affected resources and operations. No Additional Items

Each item of this array must be:

Type: object
Webhook describes an admission webhook and the resources and operations it applies to.

Type: object
ClientConfig defines how to communicate with the hook. Required

Type: stringFormat: byte
`caBundle` is a PEM encoded CA bundle which will be used to validate the webhook's server certificate. If unspecified, system trust roots on the apiserver are used.

Type: object
`service` is a reference to the service for this webhook. Either `service` or `url` must be specified. If the webhook is running within the cluster, then you should use `service`. Port 443 will be used if it is open, otherwise it is an error.

Type: string
`name` is the name of the service. Required

Type: string
`namespace` is the namespace of the service. Required

Type: string
`path` is an optional URL path which will be sent in any request to this service.

Type: string
`url` gives the location of the webhook, in standard URL form (`scheme://host:port/path`). Exactly one of `url` or `service` must be specified. The `host` should not refer to a service running in the cluster; use the `service` field instead. The host might be resolved via external DNS in some apiservers (e.g., `kube-apiserver` cannot resolve in-cluster DNS as that would be a layering violation). `host` may also be an IP address. Please note that using `localhost` or `127.0.0.1` as a `host` is risky unless you take great care to run this webhook on all hosts which run an apiserver which might need to make calls to this webhook. Such installs are likely to be non-portable, i.e., not easy to turn up in a new cluster. The scheme must be "https"; the URL must begin with "https://". A path is optional, and if present may be any string permissible in a URL. You may use the path to pass an arbitrary string to the webhook, for example, a cluster identifier. Attempting to use a user or basic auth e.g. "user:password@" is not allowed. Fragments ("#...") and query parameters ("?...") are not allowed, either.

Type: string
FailurePolicy defines how unrecognized errors from the admission endpoint are handled - allowed values are Ignore or Fail. Defaults to Ignore.

Type: string
The name of the admission webhook. Name should be fully qualified, e.g., imagepolicy.kubernetes.io, where "imagepolicy" is the name of the webhook, and kubernetes.io is the name of the organization. Required.

Type: object
NamespaceSelector decides whether to run the webhook on an object based on whether the namespace for that object matches the selector. If the object itself is a namespace, the matching is performed on object.metadata.labels. If the object is another cluster scoped resource, it never skips the webhook. For example, to run the webhook on any objects whose namespace is not associated with "runlevel" of "0" or "1"; you will set the selector as follows: "namespaceSelector": { "matchExpressions": [ { "key": "runlevel", "operator": "NotIn", "values": [ "0", "1" ] } ] } If instead you want to only run the webhook on any objects whose namespace is associated with the "environment" of "prod" or "staging"; you will set the selector as follows: "namespaceSelector": { "matchExpressions": [ { "key": "environment", "operator": "In", "values": [ "prod", "staging" ] } ] } See https://kubernetes.io/docs/concepts/overview/working-with-objects/labels/ for more examples of label selectors. Default to the empty LabelSelector, which matches everything.

Type: array
matchExpressions is a list of label selector requirements. The requirements are ANDed. No Additional Items

Each item of this array must be:

Type: object
A label selector requirement is a selector that contains values, a key, and an operator that relates the key and values.

Type: string
key is the label key that the selector applies to.

Type: string
operator represents a key's relationship to a set of values. Valid operators are In, NotIn, Exists and DoesNotExist.

Type: array of string
values is an array of string values. If the operator is In or NotIn, the values array must be non-empty. If the operator is Exists or DoesNotExist, the values array must be empty. This array is replaced during a strategic merge patch. No Additional Items

Each item of this array must be:

Type: object
matchLabels is a map of {key,value} pairs. A single {key,value} in the matchLabels map is equivalent to an element of matchExpressions, whose key field is "key", the operator is "In", and the values array contains only "value". The requirements are ANDed.

Each additional property must conform to the following schema

Type: string

Type: array
Rules describes what operations on what resources/subresources the webhook cares about. The webhook cares about an operation if it matches _any_ Rule. However, in order to prevent ValidatingAdmissionWebhooks and MutatingAdmissionWebhooks from putting the cluster in a state which cannot be recovered from without completely disabling the plugin, ValidatingAdmissionWebhooks and MutatingAdmissionWebhooks are never called on admission requests for ValidatingWebhookConfiguration and MutatingWebhookConfiguration objects. No Additional Items

Each item of this array must be:

Type: object
RuleWithOperations is a tuple of Operations and Resources. It is recommended to make sure that all the tuple expansions are valid.

Type: array of string
APIGroups is the API groups the resources belong to. '*' is all groups. If '*' is present, the length of the slice must be one. Required. No Additional Items

Each item of this array must be:

Type: array of string
APIVersions is the API versions the resources belong to. '*' is all versions. If '*' is present, the length of the slice must be one. Required. No Additional Items

Each item of this array must be:

Type: array of string
Operations is the operations the admission hook cares about - CREATE, UPDATE, or * for all operations. If '*' is present, the length of the slice must be one. Required. No Additional Items

Each item of this array must be:

Type: array of string
Resources is a list of resources this rule applies to. For example: 'pods' means pods. 'pods/log' means the log subresource of pods. '*' means all resources, but not subresources. 'pods/*' means all subresources of pods. '*/scale' means all scale subresources. '*/*' means all resources and their subresources. If wildcard is present, the validation rule will ensure resources do not overlap with each other. Depending on the enclosing object, subresources might not be allowed. Required.
No Additional Items

Each item of this array must be:

Type: string
SideEffects states whether this webhookk has side effects. Acceptable values are: Unknown, None, Some, NoneOnDryRun Webhooks with side effects MUST implement a reconciliation system, since a request may be rejected by a future step in the admission change and the side effects therefore need to be undone. Requests with the dryRun attribute will be auto-rejected if they match a webhook with sideEffects == Unknown or Some. Defaults to Unknown.
Type: object
MutatingWebhookConfigurationList is a list of MutatingWebhookConfiguration.

Type: string
APIVersion defines the versioned schema of this representation of an object. Servers should convert recognized schemas to the latest internal value, and may reject unrecognized values. More info: https://git.k8s.io/community/contributors/devel/api-conventions.md#resources

Type: array
List of MutatingWebhookConfiguration. No Additional Items

Each item of this array must be:

Type: object
MutatingWebhookConfiguration describes the configuration of and admission webhook that accept or reject and may change the object.Same definition as oneOf_i4

Type: enum (of string)
Kind is a string value representing the REST resource this object represents. Servers may infer this from the endpoint the client submits requests to. Cannot be updated. In CamelCase. More info: https://git.k8s.io/community/contributors/devel/api-conventions.md#types-kinds

Must be one of:

  • "MutatingWebhookConfigurationList"

Type: object
Standard list metadata. More info: https://git.k8s.io/community/contributors/devel/api-conventions.md#types-kindsSame definition as metadata
Type: object
RuleWithOperations is a tuple of Operations and Resources. It is recommended to make sure that all the tuple expansions are valid.Same definition as oneOf_i4_webhooks_items_rules_items
Type: object
ServiceReference holds a reference to Service.legacy.k8s.ioSame definition as service
Type: object
ValidatingWebhookConfiguration describes the configuration of and admission webhook that accept or reject and object without changing it.

Type: string
APIVersion defines the versioned schema of this representation of an object. Servers should convert recognized schemas to the latest internal value, and may reject unrecognized values. More info: https://git.k8s.io/community/contributors/devel/api-conventions.md#resources

Type: enum (of string)
Kind is a string value representing the REST resource this object represents. Servers may infer this from the endpoint the client submits requests to. Cannot be updated. In CamelCase. More info: https://git.k8s.io/community/contributors/devel/api-conventions.md#types-kinds

Must be one of:

  • "ValidatingWebhookConfiguration"

Type: object
Standard object metadata; More info: https://git.k8s.io/community/contributors/devel/api-conventions.md#metadata.Same definition as metadata

Type: array
Webhooks is a list of webhooks and the affected resources and operations. No Additional Items

Each item of this array must be:

Type: object
Webhook describes an admission webhook and the resources and operations it applies to.Same definition as oneOf_i4_webhooks_items
Type: object
ValidatingWebhookConfigurationList is a list of ValidatingWebhookConfiguration.

Type: string
APIVersion defines the versioned schema of this representation of an object. Servers should convert recognized schemas to the latest internal value, and may reject unrecognized values. More info: https://git.k8s.io/community/contributors/devel/api-conventions.md#resources

Type: array
List of ValidatingWebhookConfiguration. No Additional Items

Each item of this array must be:

Type: object
ValidatingWebhookConfiguration describes the configuration of and admission webhook that accept or reject and object without changing it.Same definition as oneOf_i8

Type: enum (of string)
Kind is a string value representing the REST resource this object represents. Servers may infer this from the endpoint the client submits requests to. Cannot be updated. In CamelCase. More info: https://git.k8s.io/community/contributors/devel/api-conventions.md#types-kinds

Must be one of:

  • "ValidatingWebhookConfigurationList"

Type: object
Standard list metadata. More info: https://git.k8s.io/community/contributors/devel/api-conventions.md#types-kindsSame definition as metadata
Type: object
Webhook describes an admission webhook and the resources and operations it applies to.Same definition as oneOf_i4_webhooks_items
Type: object
WebhookClientConfig contains the information to make a TLS connection with the webhookSame definition as clientConfig
Type: object
ControllerRevision implements an immutable snapshot of state data. Clients are responsible for serializing and deserializing the objects that contain their internal state. Once a ControllerRevision has been successfully created, it can not be updated. The API Server will fail validation of all requests that attempt to mutate the Data field. ControllerRevisions may, however, be deleted. Note that, due to its use by both the DaemonSet and StatefulSet controllers for update and rollback, this object is beta. However, it may be subject to name and representation changes in future releases, and clients should not depend on its stability. It is primarily for internal use by controllers.

Type: string
APIVersion defines the versioned schema of this representation of an object. Servers should convert recognized schemas to the latest internal value, and may reject unrecognized values. More info: https://git.k8s.io/community/contributors/devel/api-conventions.md#resources

Type: object
Data is the serialized representation of the state.

Type: stringFormat: byte
Raw is the underlying serialization of this object.

Type: enum (of string)
Kind is a string value representing the REST resource this object represents. Servers may infer this from the endpoint the client submits requests to. Cannot be updated. In CamelCase. More info: https://git.k8s.io/community/contributors/devel/api-conventions.md#types-kinds

Must be one of:

  • "ControllerRevision"

Type: object
Standard object's metadata. More info: https://git.k8s.io/community/contributors/devel/api-conventions.md#metadataSame definition as metadata

Type: integerFormat: int64
Revision indicates the revision of the state represented by Data.
Type: object
ControllerRevisionList is a resource containing a list of ControllerRevision objects.

Type: string
APIVersion defines the versioned schema of this representation of an object. Servers should convert recognized schemas to the latest internal value, and may reject unrecognized values. More info: https://git.k8s.io/community/contributors/devel/api-conventions.md#resources

Type: array
Items is the list of ControllerRevisions No Additional Items

Each item of this array must be:

Type: object
ControllerRevision implements an immutable snapshot of state data. Clients are responsible for serializing and deserializing the objects that contain their internal state. Once a ControllerRevision has been successfully created, it can not be updated. The API Server will fail validation of all requests that attempt to mutate the Data field. ControllerRevisions may, however, be deleted. Note that, due to its use by both the DaemonSet and StatefulSet controllers for update and rollback, this object is beta. However, it may be subject to name and representation changes in future releases, and clients should not depend on its stability. It is primarily for internal use by controllers.
Same definition as oneOf_i12

Type: enum (of string)
Kind is a string value representing the REST resource this object represents. Servers may infer this from the endpoint the client submits requests to. Cannot be updated. In CamelCase. More info: https://git.k8s.io/community/contributors/devel/api-conventions.md#types-kinds

Must be one of:

  • "ControllerRevisionList"

Type: object
More info: https://git.k8s.io/community/contributors/devel/api-conventions.md#metadataSame definition as metadata
Type: object
DaemonSet represents the configuration of a daemon set.

Type: string
APIVersion defines the versioned schema of this representation of an object. Servers should convert recognized schemas to the latest internal value, and may reject unrecognized values. More info: https://git.k8s.io/community/contributors/devel/api-conventions.md#resources

Type: enum (of string)
Kind is a string value representing the REST resource this object represents. Servers may infer this from the endpoint the client submits requests to. Cannot be updated. In CamelCase. More info: https://git.k8s.io/community/contributors/devel/api-conventions.md#types-kinds

Must be one of:

  • "DaemonSet"

Type: object
Standard object's metadata. More info: https://git.k8s.io/community/contributors/devel/api-conventions.md#metadataSame definition as metadata

Type: object
The desired behavior of this daemon set. More info: https://git.k8s.io/community/contributors/devel/api-conventions.md#spec-and-status

Type: integerFormat: int32
The minimum number of seconds for which a newly created DaemonSet pod should be ready without any of its container crashing, for it to be considered available. Defaults to 0 (pod will be considered available as soon as it is ready).

Type: integerFormat: int32
The number of old history to retain to allow rollback. This is a pointer to distinguish between explicit zero and not specified. Defaults to 10.

Type: object
A label query over pods that are managed by the daemon set. Must match in order to be controlled. It must match the pod template's labels. More info: https://kubernetes.io/docs/concepts/overview/working-with-objects/labels/#label-selectorsSame definition as namespaceSelector

Type: object
An object that describes the pod that will be created. The DaemonSet will create exactly one copy of this pod on every node that matches the template's node selector (or on every node if no node selector is specified). More info: https://kubernetes.io/docs/concepts/workloads/controllers/replicationcontroller#pod-template

Type: object
Standard object's metadata. More info: https://git.k8s.io/community/contributors/devel/api-conventions.md#metadataSame definition as metadata

Type: object
Specification of the desired behavior of the pod. More info: https://git.k8s.io/community/contributors/devel/api-conventions.md#spec-and-status

Type: integerFormat: int64
Optional duration in seconds the pod may be active on the node relative to StartTime before the system will actively try to mark it failed and kill associated containers. Value must be a positive integer.

Type: object
If specified, the pod's scheduling constraints

Type: object
Describes node affinity scheduling rules for the pod.

Type: array
The scheduler will prefer to schedule pods to nodes that satisfy the affinity expressions specified by this field, but it may choose a node that violates one or more of the expressions. The node that is most preferred is the one with the greatest sum of weights, i.e. for each node that meets all of the scheduling requirements (resource request, requiredDuringScheduling affinity expressions, etc.), compute a sum by iterating through the elements of this field and adding "weight" to the sum if the node matches the corresponding matchExpressions; the node(s) with the highest sum are the most preferred.
No Additional Items

Each item of this array must be:

Type: object
An empty preferred scheduling term matches all objects with implicit weight 0 (i.e. it's a no-op). A null preferred scheduling term matches no objects (i.e. is also a no-op).

Type: object
A node selector term, associated with the corresponding weight.

Type: array
A list of node selector requirements by node's labels. No Additional Items

Each item of this array must be:

Type: object
A node selector requirement is a selector that contains values, a key, and an operator that relates the key and values.

Type: string
Represents a key's relationship to a set of values. Valid operators are In, NotIn, Exists, DoesNotExist. Gt, and Lt.

Type: array of string
An array of string values. If the operator is In or NotIn, the values array must be non-empty. If the operator is Exists or DoesNotExist, the values array must be empty. If the operator is Gt or Lt, the values array must have a single element, which will be interpreted as an integer. This array is replaced during a strategic merge patch. No Additional Items

Each item of this array must be:

Type: integerFormat: int32
Weight associated with matching the corresponding nodeSelectorTerm, in the range 1-100.

Type: object
If the affinity requirements specified by this field are not met at scheduling time, the pod will not be scheduled onto the node. If the affinity requirements specified by this field cease to be met at some point during pod execution (e.g. due to an update), the system may or may not try to eventually evict the pod from its node.

Type: array
Required. A list of node selector terms. The terms are ORed. No Additional Items

Each item of this array must be:

Type: object
A null or empty node selector term matches no objects. The requirements of them are ANDed. The TopologySelectorTerm type implements a subset of the NodeSelectorTerm.Same definition as preference

Type: object
Describes pod affinity scheduling rules (e.g. co-locate this pod in the same node, zone, etc. as some other pod(s)).

Type: array
The scheduler will prefer to schedule pods to nodes that satisfy the affinity expressions specified by this field, but it may choose a node that violates one or more of the expressions. The node that is most preferred is the one with the greatest sum of weights, i.e. for each node that meets all of the scheduling requirements (resource request, requiredDuringScheduling affinity expressions, etc.), compute a sum by iterating through the elements of this field and adding "weight" to the sum if the node has pods which matches the corresponding podAffinityTerm; the node(s) with the highest sum are the most preferred.
No Additional Items

Each item of this array must be:

Type: object
The weights of all of the matched WeightedPodAffinityTerm fields are added per-node to find the most preferred node(s)

Type: object
Required. A pod affinity term, associated with the corresponding weight.

Type: array of string
namespaces specifies which namespaces the labelSelector applies to (matches against); null or empty list means "this pod's namespace" No Additional Items

Each item of this array must be:

Type: string
This pod should be co-located (affinity) or not co-located (anti-affinity) with the pods matching the labelSelector in the specified namespaces, where co-located is defined as running on a node whose value of the label with key topologyKey matches that of any node on which any of the selected pods is running. Empty topologyKey is not allowed.

Type: integerFormat: int32
weight associated with matching the corresponding podAffinityTerm, in the range 1-100.

Type: array
If the affinity requirements specified by this field are not met at scheduling time, the pod will not be scheduled onto the node. If the affinity requirements specified by this field cease to be met at some point during pod execution (e.g. due to a pod label update), the system may or may not try to eventually evict the pod from its node. When there are multiple elements, the lists of nodes corresponding to each podAffinityTerm are intersected, i.e. all terms must be satisfied. No Additional Items

Each item of this array must be:

Type: object
Defines a set of pods (namely those matching the labelSelector relative to the given namespace(s)) that this pod should be co-located (affinity) or not co-located (anti-affinity) with, where co-located is defined as running on a node whose value of the label with key matches that of any node on which a pod of the set of pods is runningSame definition as podAffinityTerm

Type: object
Describes pod anti-affinity scheduling rules (e.g. avoid putting this pod in the same node, zone, etc. as some other pod(s)).

Type: array
The scheduler will prefer to schedule pods to nodes that satisfy the anti-affinity expressions specified by this field, but it may choose a node that violates one or more of the expressions. The node that is most preferred is the one with the greatest sum of weights, i.e. for each node that meets all of the scheduling requirements (resource request, requiredDuringScheduling anti-affinity expressions, etc.), compute a sum by iterating through the elements of this field and adding "weight" to the sum if the node has pods which matches the corresponding podAffinityTerm; the node(s) with the highest sum are the most preferred.
No Additional Items

Each item of this array must be:

Type: array
If the anti-affinity requirements specified by this field are not met at scheduling time, the pod will not be scheduled onto the node. If the anti-affinity requirements specified by this field cease to be met at some point during pod execution (e.g. due to a pod label update), the system may or may not try to eventually evict the pod from its node. When there are multiple elements, the lists of nodes corresponding to each podAffinityTerm are intersected, i.e. all terms must be satisfied. No Additional Items

Each item of this array must be:

Type: object
Defines a set of pods (namely those matching the labelSelector relative to the given namespace(s)) that this pod should be co-located (affinity) or not co-located (anti-affinity) with, where co-located is defined as running on a node whose value of the label with key matches that of any node on which a pod of the set of pods is runningSame definition as podAffinityTerm

Type: boolean
AutomountServiceAccountToken indicates whether a service account token should be automatically mounted.

Type: array
List of containers belonging to the pod. Containers cannot currently be added or removed. There must be at least one container in a Pod. Cannot be updated. No Additional Items

Each item of this array must be:

Type: object
A single application container that you want to run within a pod.

Type: array of string
Arguments to the entrypoint. The docker image's CMD is used if this is not provided. Variable references $(VAR_NAME) are expanded using the container's environment. If a variable cannot be resolved, the reference in the input string will be unchanged. The $(VAR_NAME) syntax can be escaped with a double $$, ie: $$(VAR_NAME). Escaped references will never be expanded, regardless of whether the variable exists or not. Cannot be updated. More info: https://kubernetes.io/docs/tasks/inject-data-application/define-command-argument-container/#running-a-command-in-a-shell
No Additional Items

Each item of this array must be:

Type: array of string
Entrypoint array. Not executed within a shell. The docker image's ENTRYPOINT is used if this is not provided. Variable references $(VAR_NAME) are expanded using the container's environment. If a variable cannot be resolved, the reference in the input string will be unchanged. The $(VAR_NAME) syntax can be escaped with a double $$, ie: $$(VAR_NAME). Escaped references will never be expanded, regardless of whether the variable exists or not. Cannot be updated. More info: https://kubernetes.io/docs/tasks/inject-data-application/define-command-argument-container/#running-a-command-in-a-shell
No Additional Items

Each item of this array must be:

Type: array
List of environment variables to set in the container. Cannot be updated. No Additional Items

Each item of this array must be:

Type: object
EnvVar represents an environment variable present in a Container.

Type: string
Name of the environment variable. Must be a C_IDENTIFIER.

Type: string
Variable references $(VAR_NAME) are expanded using the previous defined environment variables in the container and any service environment variables. If a variable cannot be resolved, the reference in the input string will be unchanged. The $(VAR_NAME) syntax can be escaped with a double $$, ie: $$(VAR_NAME). Escaped references will never be expanded, regardless of whether the variable exists or not. Defaults to "".

Type: object
Source for the environment variable's value. Cannot be used if value is not empty.

Type: object
Selects a key of a ConfigMap.

Type: string
Name of the referent. More info: https://kubernetes.io/docs/concepts/overview/working-with-objects/names/#names

Type: boolean
Specify whether the ConfigMap or it's key must be defined

Type: object
Selects a field of the pod: supports metadata.name, metadata.namespace, metadata.labels, metadata.annotations, spec.nodeName, spec.serviceAccountName, status.hostIP, status.podIP.

Type: string
Version of the schema the FieldPath is written in terms of, defaults to "v1".

Type: string
Path of the field to select in the specified API version.

Type: object
Selects a resource of the container: only resources limits and requests (limits.cpu, limits.memory, limits.ephemeral-storage, requests.cpu, requests.memory and requests.ephemeral-storage) are currently supported.

Type: string
Container name: required for volumes, optional for env vars

Type: object
Selects a key of a secret in the pod's namespace

Type: string
The key of the secret to select from. Must be a valid secret key.

Type: string
Name of the referent. More info: https://kubernetes.io/docs/concepts/overview/working-with-objects/names/#names

Type: boolean
Specify whether the Secret or it's key must be defined

Type: array
List of sources to populate environment variables in the container. The keys defined within a source must be a C_IDENTIFIER. All invalid keys will be reported as an event when the container is starting. When a key exists in multiple sources, the value associated with the last source will take precedence. Values defined by an Env with a duplicate key will take precedence. Cannot be updated. No Additional Items

Each item of this array must be:

Type: object
EnvFromSource represents the source of a set of ConfigMaps

Type: object
The ConfigMap to select from

Type: string
Name of the referent. More info: https://kubernetes.io/docs/concepts/overview/working-with-objects/names/#names

Type: boolean
Specify whether the ConfigMap must be defined

Type: string
An optional identifier to prepend to each key in the ConfigMap. Must be a C_IDENTIFIER.

Type: object
The Secret to select from

Type: string
Name of the referent. More info: https://kubernetes.io/docs/concepts/overview/working-with-objects/names/#names

Type: boolean
Specify whether the Secret must be defined

Type: string
Docker image name. More info: https://kubernetes.io/docs/concepts/containers/images This field is optional to allow higher level config management to default or override container images in workload controllers like Deployments and StatefulSets.

Type: string
Image pull policy. One of Always, Never, IfNotPresent. Defaults to Always if :latest tag is specified, or IfNotPresent otherwise. Cannot be updated. More info: https://kubernetes.io/docs/concepts/containers/images#updating-images

Type: object
Actions that the management system should take in response to container lifecycle events. Cannot be updated.

Type: object
PostStart is called immediately after a container is created. If the handler fails, the container is terminated and restarted according to its restart policy. Other management of the container blocks until the hook completes. More info: https://kubernetes.io/docs/concepts/containers/container-lifecycle-hooks/#container-hooks

Type: object
One and only one of the following should be specified. Exec specifies the action to take.

Type: array of string
Command is the command line to execute inside the container, the working directory for the command is root ('/') in the container's filesystem. The command is simply exec'd, it is not run inside a shell, so traditional shell instructions ('|', etc) won't work. To use a shell, you need to explicitly call out to that shell. Exit status of 0 is treated as live/healthy and non-zero is unhealthy. No Additional Items

Each item of this array must be:

Type: object
HTTPGet specifies the http request to perform.

Type: string
Host name to connect to, defaults to the pod IP. You probably want to set "Host" in httpHeaders instead.

Type: array
Custom headers to set in the request. HTTP allows repeated headers. No Additional Items

Each item of this array must be:

Type: string
Path to access on the HTTP server.

Type: object
Name or number of the port to access on the container. Number must be in the range 1 to 65535. Name must be an IANA_SVC_NAME.

Type: string
Scheme to use for connecting to the host. Defaults to HTTP.

Type: object
TCPSocket specifies an action involving a TCP port. TCP hooks not yet supported

Type: string
Optional: Host name to connect to, defaults to the pod IP.

Type: object
Number or name of the port to access on the container. Number must be in the range 1 to 65535. Name must be an IANA_SVC_NAME.Same definition as port

Type: object
PreStop is called immediately before a container is terminated. The container is terminated after the handler completes. The reason for termination is passed to the handler. Regardless of the outcome of the handler, the container is eventually terminated. Other management of the container blocks until the hook completes. More info: https://kubernetes.io/docs/concepts/containers/container-lifecycle-hooks/#container-hooksSame definition as postStart

Type: object
Periodic probe of container liveness. Container will be restarted if the probe fails. Cannot be updated. More info: https://kubernetes.io/docs/concepts/workloads/pods/pod-lifecycle#container-probes

Type: object
One and only one of the following should be specified. Exec specifies the action to take.Same definition as exec

Type: integerFormat: int32
Minimum consecutive failures for the probe to be considered failed after having succeeded. Defaults to 3. Minimum value is 1.

Type: object
HTTPGet specifies the http request to perform.Same definition as httpGet

Type: integerFormat: int32
Number of seconds after the container has started before liveness probes are initiated. More info: https://kubernetes.io/docs/concepts/workloads/pods/pod-lifecycle#container-probes

Type: integerFormat: int32
How often (in seconds) to perform the probe. Default to 10 seconds. Minimum value is 1.

Type: integerFormat: int32
Minimum consecutive successes for the probe to be considered successful after having failed. Defaults to 1. Must be 1 for liveness. Minimum value is 1.

Type: object
TCPSocket specifies an action involving a TCP port. TCP hooks not yet supportedSame definition as tcpSocket

Type: integerFormat: int32
Number of seconds after which the probe times out. Defaults to 1 second. Minimum value is 1. More info: https://kubernetes.io/docs/concepts/workloads/pods/pod-lifecycle#container-probes

Type: string
Name of the container specified as a DNS_LABEL. Each container in a pod must have a unique name (DNS_LABEL). Cannot be updated.

Type: array
List of ports to expose from the container. Exposing a port here gives the system additional information about the network connections a container uses, but is primarily informational. Not specifying a port here DOES NOT prevent that port from being exposed. Any port which is listening on the default "0.0.0.0" address inside a container will be accessible from the network. Cannot be updated. No Additional Items

Each item of this array must be:

Type: object
ContainerPort represents a network port in a single container.

Type: integerFormat: int32
Number of port to expose on the pod's IP address. This must be a valid port number, 0 < x < 65536.

Type: string
What host IP to bind the external port to.

Type: integerFormat: int32
Number of port to expose on the host. If specified, this must be a valid port number, 0 < x < 65536. If HostNetwork is specified, this must match ContainerPort. Most containers do not need this.

Type: string
If specified, this must be an IANA_SVC_NAME and unique within the pod. Each named port in a pod must have a unique name. Name for the port that can be referred to by services.

Type: string
Protocol for port. Must be UDP, TCP, or SCTP. Defaults to "TCP".

Type: object
Periodic probe of container service readiness. Container will be removed from service endpoints if the probe fails. Cannot be updated. More info: https://kubernetes.io/docs/concepts/workloads/pods/pod-lifecycle#container-probesSame definition as livenessProbe

Type: object
Compute Resources required by this container. Cannot be updated. More info: https://kubernetes.io/docs/concepts/configuration/manage-compute-resources-container/

Type: object
Limits describes the maximum amount of compute resources allowed. More info: https://kubernetes.io/docs/concepts/configuration/manage-compute-resources-container/

Type: object
Requests describes the minimum amount of compute resources required. If Requests is omitted for a container, it defaults to Limits if that is explicitly specified, otherwise to an implementation-defined value. More info: https://kubernetes.io/docs/concepts/configuration/manage-compute-resources-container/

Type: object
Security options the pod should run with. More info: https://kubernetes.io/docs/concepts/policy/security-context/ More info: https://kubernetes.io/docs/tasks/configure-pod-container/security-context/

Type: boolean
AllowPrivilegeEscalation controls whether a process can gain more privileges than its parent process. This bool directly controls if the no_new_privs flag will be set on the container process. AllowPrivilegeEscalation is true always when the container is: 1) run as Privileged 2) has CAP_SYS_ADMIN

Type: object
The capabilities to add/drop when running containers. Defaults to the default set of capabilities granted by the container runtime.

Type: array of string
Added capabilities No Additional Items

Each item of this array must be:

Type: array of string
Removed capabilities No Additional Items

Each item of this array must be:

Type: boolean
Run container in privileged mode. Processes in privileged containers are essentially equivalent to root on the host. Defaults to false.

Type: string
procMount denotes the type of proc mount to use for the containers. The default is DefaultProcMount which uses the container runtime defaults for readonly paths and masked paths. This requires the ProcMountType feature flag to be enabled.

Type: boolean
Whether this container has a read-only root filesystem. Default is false.

Type: integerFormat: int64
The GID to run the entrypoint of the container process. Uses runtime default if unset. May also be set in PodSecurityContext. If set in both SecurityContext and PodSecurityContext, the value specified in SecurityContext takes precedence.

Type: boolean
Indicates that the container must run as a non-root user. If true, the Kubelet will validate the image at runtime to ensure that it does not run as UID 0 (root) and fail to start the container if it does. If unset or false, no such validation will be performed. May also be set in PodSecurityContext. If set in both SecurityContext and PodSecurityContext, the value specified in SecurityContext takes precedence.

Type: integerFormat: int64
The UID to run the entrypoint of the container process. Defaults to user specified in image metadata if unspecified. May also be set in PodSecurityContext. If set in both SecurityContext and PodSecurityContext, the value specified in SecurityContext takes precedence.

Type: object
The SELinux context to be applied to the container. If unspecified, the container runtime will allocate a random SELinux context for each container. May also be set in PodSecurityContext. If set in both SecurityContext and PodSecurityContext, the value specified in SecurityContext takes precedence.

Type: string
Level is SELinux level label that applies to the container.

Type: string
Role is a SELinux role label that applies to the container.

Type: string
Type is a SELinux type label that applies to the container.

Type: string
User is a SELinux user label that applies to the container.

Type: boolean
Whether this container should allocate a buffer for stdin in the container runtime. If this is not set, reads from stdin in the container will always result in EOF. Default is false.

Type: boolean
Whether the container runtime should close the stdin channel after it has been opened by a single attach. When stdin is true the stdin stream will remain open across multiple attach sessions. If stdinOnce is set to true, stdin is opened on container start, is empty until the first client attaches to stdin, and then remains open and accepts data until the client disconnects, at which time stdin is closed and remains closed until the container is restarted. If this flag is false, a container processes that reads from stdin will never receive an EOF. Default is false

Type: string
Optional: Path at which the file to which the container's termination message will be written is mounted into the container's filesystem. Message written is intended to be brief final status, such as an assertion failure message. Will be truncated by the node if greater than 4096 bytes. The total message length across all containers will be limited to 12kb. Defaults to /dev/termination-log. Cannot be updated.

Type: string
Indicate how the termination message should be populated. File will use the contents of terminationMessagePath to populate the container status message on both success and failure. FallbackToLogsOnError will use the last chunk of container log output if the termination message file is empty and the container exited with an error. The log output is limited to 2048 bytes or 80 lines, whichever is smaller. Defaults to File. Cannot be updated.

Type: boolean
Whether this container should allocate a TTY for itself, also requires 'stdin' to be true. Default is false.

Type: array
volumeDevices is the list of block devices to be used by the container. This is a beta feature. No Additional Items

Each item of this array must be:

Type: object
volumeDevice describes a mapping of a raw block device within a container.

Type: string
devicePath is the path inside of the container that the device will be mapped to.

Type: string
name must match the name of a persistentVolumeClaim in the pod

Type: array
Pod volumes to mount into the container's filesystem. Cannot be updated. No Additional Items

Each item of this array must be:

Type: object
VolumeMount describes a mounting of a Volume within a container.

Type: string
Path within the container at which the volume should be mounted. Must not contain ':'.

Type: string
mountPropagation determines how mounts are propagated from the host to container and the other way around. When not set, MountPropagationNone is used. This field is beta in 1.10.

Type: string
This must match the Name of a Volume.

Type: boolean
Mounted read-only if true, read-write otherwise (false or unspecified). Defaults to false.

Type: string
Path within the volume from which the container's volume should be mounted. Defaults to "" (volume's root).

Type: string
Container's working directory. If not specified, the container runtime's default will be used, which might be configured in the container image. Cannot be updated.

Type: object
Specifies the DNS parameters of a pod. Parameters specified here will be merged to the generated DNS configuration based on DNSPolicy.

Type: array of string
A list of DNS name server IP addresses. This will be appended to the base nameservers generated from DNSPolicy. Duplicated nameservers will be removed. No Additional Items

Each item of this array must be:

Type: array
A list of DNS resolver options. This will be merged with the base options generated from DNSPolicy. Duplicated entries will be removed. Resolution options given in Options will override those that appear in the base DNSPolicy. No Additional Items

Each item of this array must be:

Type: object
PodDNSConfigOption defines DNS resolver options of a pod.

Type: array of string
A list of DNS search domains for host-name lookup. This will be appended to the base search paths generated from DNSPolicy. Duplicated search paths will be removed. No Additional Items

Each item of this array must be:

Type: string
Set DNS policy for the pod. Defaults to "ClusterFirst". Valid values are 'ClusterFirstWithHostNet', 'ClusterFirst', 'Default' or 'None'. DNS parameters given in DNSConfig will be merged with the policy selected with DNSPolicy. To have DNS options set along with hostNetwork, you have to specify DNS policy explicitly to 'ClusterFirstWithHostNet'.

Type: array
HostAliases is an optional list of hosts and IPs that will be injected into the pod's hosts file if specified. This is only valid for non-hostNetwork pods. No Additional Items

Each item of this array must be:

Type: object
HostAlias holds the mapping between IP and hostnames that will be injected as an entry in the pod's hosts file.

Type: array of string
Hostnames for the above IP address. No Additional Items

Each item of this array must be:

Type: string
IP address of the host file entry.

Type: boolean
Use the host's ipc namespace. Optional: Default to false.

Type: boolean
Host networking requested for this pod. Use the host's network namespace. If this option is set, the ports that will be used must be specified. Default to false.

Type: boolean
Use the host's pid namespace. Optional: Default to false.

Type: string
Specifies the hostname of the Pod If not specified, the pod's hostname will be set to a system-defined value.

Type: array
ImagePullSecrets is an optional list of references to secrets in the same namespace to use for pulling any of the images used by this PodSpec. If specified, these secrets will be passed to individual puller implementations for them to use. For example, in the case of docker, only DockerConfig type secrets are honored. More info: https://kubernetes.io/docs/concepts/containers/images#specifying-imagepullsecrets-on-a-pod No Additional Items

Each item of this array must be:

Type: object
LocalObjectReference contains enough information to let you locate the referenced object inside the same namespace.

Type: string
Name of the referent. More info: https://kubernetes.io/docs/concepts/overview/working-with-objects/names/#names

Type: array
List of initialization containers belonging to the pod. Init containers are executed in order prior to containers being started. If any init container fails, the pod is considered to have failed and is handled according to its restartPolicy. The name for an init container or normal container must be unique among all containers. Init containers may not have Lifecycle actions, Readiness probes, or Liveness probes. The resourceRequirements of an init container are taken into account during scheduling by finding the highest request/limit for each resource type, and then using the max of of that value or the sum of the normal containers. Limits are applied to init containers in a similar fashion. Init containers cannot currently be added or removed. Cannot be updated. More info: https://kubernetes.io/docs/concepts/workloads/pods/init-containers/
No Additional Items

Each item of this array must be:

Type: object
A single application container that you want to run within a pod.Same definition as oneOf_i14_spec_template_spec_containers_items

Type: string
NodeName is a request to schedule this pod onto a specific node. If it is non-empty, the scheduler simply schedules this pod onto that node, assuming that it fits resource requirements.

Type: object
NodeSelector is a selector which must be true for the pod to fit on a node. Selector which must match a node's labels for the pod to be scheduled on that node. More info: https://kubernetes.io/docs/concepts/configuration/assign-pod-node/

Each additional property must conform to the following schema

Type: string

Type: integerFormat: int32
The priority value. Various system components use this field to find the priority of the pod. When Priority Admission Controller is enabled, it prevents users from setting this field. The admission controller populates this field from PriorityClassName. The higher the value, the higher the priority.

Type: string
If specified, indicates the pod's priority. "system-node-critical" and "system-cluster-critical" are two special keywords which indicate the highest priorities with the former being the highest priority. Any other name must be defined by creating a PriorityClass object with that name. If not specified, the pod priority will be default or zero if there is no default.

Type: array
If specified, all readiness gates will be evaluated for pod readiness. A pod is ready when all its containers are ready AND all conditions specified in the readiness gates have status equal to "True" More info: https://github.com/kubernetes/community/blob/master/keps/sig-network/0007-pod-ready%2B%2B.md No Additional Items

Each item of this array must be:

Type: object
PodReadinessGate contains the reference to a pod condition

Type: string
ConditionType refers to a condition in the pod's condition list with matching type.

Type: string
Restart policy for all containers within the pod. One of Always, OnFailure, Never. Default to Always. More info: https://kubernetes.io/docs/concepts/workloads/pods/pod-lifecycle/#restart-policy

Type: string
RuntimeClassName refers to a RuntimeClass object in the node.k8s.io group, which should be used to run this pod. If no RuntimeClass resource matches the named class, the pod will not be run. If unset or empty, the "legacy" RuntimeClass will be used, which is an implicit class with an empty definition that uses the default runtime handler. More info: https://github.com/kubernetes/community/blob/master/keps/sig-node/0014-runtime-class.md This is an alpha feature and may change in the future.

Type: string
If specified, the pod will be dispatched by specified scheduler. If not specified, the pod will be dispatched by default scheduler.

Type: object
SecurityContext holds pod-level security attributes and common container settings. Optional: Defaults to empty. See type description for default values of each field.

Type: integerFormat: int64
A special supplemental group that applies to all containers in a pod. Some volume types allow the Kubelet to change the ownership of that volume to be owned by the pod: 1. The owning GID will be the FSGroup 2. The setgid bit is set (new files created in the volume will be owned by FSGroup) 3. The permission bits are OR'd with rw-rw---- If unset, the Kubelet will not modify the ownership and permissions of any volume.

Type: integerFormat: int64
The GID to run the entrypoint of the container process. Uses runtime default if unset. May also be set in SecurityContext. If set in both SecurityContext and PodSecurityContext, the value specified in SecurityContext takes precedence for that container.

Type: boolean
Indicates that the container must run as a non-root user. If true, the Kubelet will validate the image at runtime to ensure that it does not run as UID 0 (root) and fail to start the container if it does. If unset or false, no such validation will be performed. May also be set in SecurityContext. If set in both SecurityContext and PodSecurityContext, the value specified in SecurityContext takes precedence.

Type: integerFormat: int64
The UID to run the entrypoint of the container process. Defaults to user specified in image metadata if unspecified. May also be set in SecurityContext. If set in both SecurityContext and PodSecurityContext, the value specified in SecurityContext takes precedence for that container.

Type: object
The SELinux context to be applied to all containers. If unspecified, the container runtime will allocate a random SELinux context for each container. May also be set in SecurityContext. If set in both SecurityContext and PodSecurityContext, the value specified in SecurityContext takes precedence for that container.Same definition as seLinuxOptions

Type: array of integer
A list of groups applied to the first process run in each container, in addition to the container's primary GID. If unspecified, no groups will be added to any container. No Additional Items

Each item of this array must be:

Type: array
Sysctls hold a list of namespaced sysctls used for the pod. Pods with unsupported sysctls (by the container runtime) might fail to launch. No Additional Items

Each item of this array must be:

Type: object
Sysctl defines a kernel parameter to be set

Type: string
Name of a property to set

Type: string
Value of a property to set

Type: string
DeprecatedServiceAccount is a depreciated alias for ServiceAccountName. Deprecated: Use serviceAccountName instead.

Type: string
ServiceAccountName is the name of the ServiceAccount to use to run this pod. More info: https://kubernetes.io/docs/tasks/configure-pod-container/configure-service-account/

Type: boolean
Share a single process namespace between all of the containers in a pod. When this is set containers will be able to view and signal processes from other containers in the same pod, and the first process in each container will not be assigned PID 1. HostPID and ShareProcessNamespace cannot both be set. Optional: Default to false. This field is beta-level and may be disabled with the PodShareProcessNamespace feature.

Type: string
If specified, the fully qualified Pod hostname will be "...svc.". If not specified, the pod will not have a domainname at all.

Type: integerFormat: int64
Optional duration in seconds the pod needs to terminate gracefully. May be decreased in delete request. Value must be non-negative integer. The value zero indicates delete immediately. If this value is nil, the default grace period will be used instead. The grace period is the duration in seconds after the processes running in the pod are sent a termination signal and the time when the processes are forcibly halted with a kill signal. Set this value longer than the expected cleanup time for your process. Defaults to 30 seconds.

Type: array
If specified, the pod's tolerations. No Additional Items

Each item of this array must be:

Type: object
The pod this Toleration is attached to tolerates any taint that matches the triple using the matching operator .

Type: string
Effect indicates the taint effect to match. Empty means match all taint effects. When specified, allowed values are NoSchedule, PreferNoSchedule and NoExecute.

Type: string
Key is the taint key that the toleration applies to. Empty means match all taint keys. If the key is empty, operator must be Exists; this combination means to match all values and all keys.

Type: string
Operator represents a key's relationship to the value. Valid operators are Exists and Equal. Defaults to Equal. Exists is equivalent to wildcard for value, so that a pod can tolerate all taints of a particular category.

Type: integerFormat: int64
TolerationSeconds represents the period of time the toleration (which must be of effect NoExecute, otherwise this field is ignored) tolerates the taint. By default, it is not set, which means tolerate the taint forever (do not evict). Zero and negative values will be treated as 0 (evict immediately) by the system.

Type: string
Value is the taint value the toleration matches to. If the operator is Exists, the value should be empty, otherwise just a regular string.

Type: array
List of volumes that can be mounted by containers belonging to the pod. More info: https://kubernetes.io/docs/concepts/storage/volumes No Additional Items

Each item of this array must be:

Type: object
Volume represents a named volume in a pod that may be accessed by any container in the pod.

Type: object
AWSElasticBlockStore represents an AWS Disk resource that is attached to a kubelet's host machine and then exposed to the pod. More info: https://kubernetes.io/docs/concepts/storage/volumes#awselasticblockstore

Type: string
Filesystem type of the volume that you want to mount. Tip: Ensure that the filesystem type is supported by the host operating system. Examples: "ext4", "xfs", "ntfs". Implicitly inferred to be "ext4" if unspecified. More info: https://kubernetes.io/docs/concepts/storage/volumes#awselasticblockstore

Type: integerFormat: int32
The partition in the volume that you want to mount. If omitted, the default is to mount by volume name. Examples: For volume /dev/sda1, you specify the partition as "1". Similarly, the volume partition for /dev/sda is "0" (or you can leave the property empty).

Type: boolean
Specify "true" to force and set the ReadOnly property in VolumeMounts to "true". If omitted, the default is "false". More info: https://kubernetes.io/docs/concepts/storage/volumes#awselasticblockstore

Type: string
Unique ID of the persistent disk resource in AWS (Amazon EBS volume). More info: https://kubernetes.io/docs/concepts/storage/volumes#awselasticblockstore

Type: object
AzureDisk represents an Azure Data Disk mount on the host and bind mount to the pod.

Type: string
Host Caching mode: None, Read Only, Read Write.

Type: string
The Name of the data disk in the blob storage

Type: string
The URI the data disk in the blob storage

Type: string
Filesystem type to mount. Must be a filesystem type supported by the host operating system. Ex. "ext4", "xfs", "ntfs". Implicitly inferred to be "ext4" if unspecified.

Type: string
Expected values Shared: multiple blob disks per storage account Dedicated: single blob disk per storage account Managed: azure managed data disk (only in managed availability set). defaults to shared

Type: boolean
Defaults to false (read/write). ReadOnly here will force the ReadOnly setting in VolumeMounts.

Type: object
AzureFile represents an Azure File Service mount on the host and bind mount to the pod.

Type: boolean
Defaults to false (read/write). ReadOnly here will force the ReadOnly setting in VolumeMounts.

Type: string
the name of secret that contains Azure Storage Account Name and Key

Type: object
CephFS represents a Ceph FS mount on the host that shares a pod's lifetime

Type: array of string
Required: Monitors is a collection of Ceph monitors More info: https://releases.k8s.io/HEAD/examples/volumes/cephfs/README.md#how-to-use-it No Additional Items

Each item of this array must be:

Type: string
Optional: Used as the mounted root, rather than the full Ceph tree, default is /

Type: boolean
Optional: Defaults to false (read/write). ReadOnly here will force the ReadOnly setting in VolumeMounts. More info: https://releases.k8s.io/HEAD/examples/volumes/cephfs/README.md#how-to-use-it

Type: string
Optional: SecretFile is the path to key ring for User, default is /etc/ceph/user.secret More info: https://releases.k8s.io/HEAD/examples/volumes/cephfs/README.md#how-to-use-it

Type: object
Optional: SecretRef is reference to the authentication secret for User, default is empty. More info: https://releases.k8s.io/HEAD/examples/volumes/cephfs/README.md#how-to-use-itSame definition as oneOf_i14_spec_template_spec_imagePullSecrets_items

Type: string
Optional: User is the rados user name, default is admin More info: https://releases.k8s.io/HEAD/examples/volumes/cephfs/README.md#how-to-use-it

Type: object
Cinder represents a cinder volume attached and mounted on kubelets host machine More info: https://releases.k8s.io/HEAD/examples/mysql-cinder-pd/README.md

Type: string
Filesystem type to mount. Must be a filesystem type supported by the host operating system. Examples: "ext4", "xfs", "ntfs". Implicitly inferred to be "ext4" if unspecified. More info: https://releases.k8s.io/HEAD/examples/mysql-cinder-pd/README.md

Type: boolean
Optional: Defaults to false (read/write). ReadOnly here will force the ReadOnly setting in VolumeMounts. More info: https://releases.k8s.io/HEAD/examples/mysql-cinder-pd/README.md

Type: object
Optional: points to a secret object containing parameters used to connect to OpenStack.Same definition as oneOf_i14_spec_template_spec_imagePullSecrets_items

Type: string
volume id used to identify the volume in cinder More info: https://releases.k8s.io/HEAD/examples/mysql-cinder-pd/README.md

Type: object
ConfigMap represents a configMap that should populate this volume

Type: integerFormat: int32
Optional: mode bits to use on created files by default. Must be a value between 0 and 0777. Defaults to 0644. Directories within the path are not affected by this setting. This might be in conflict with other options that affect the file mode, like fsGroup, and the result can be other mode bits set.

Type: array
If unspecified, each key-value pair in the Data field of the referenced ConfigMap will be projected into the volume as a file whose name is the key and content is the value. If specified, the listed keys will be projected into the specified paths, and unlisted keys will not be present. If a key is specified which is not present in the ConfigMap, the volume setup will error unless it is marked optional. Paths must be relative and may not contain the '..' path or start with '..'. No Additional Items

Each item of this array must be:

Type: object
Maps a string key to a path within a volume.

Type: integerFormat: int32
Optional: mode bits to use on this file, must be a value between 0 and 0777. If not specified, the volume defaultMode will be used. This might be in conflict with other options that affect the file mode, like fsGroup, and the result can be other mode bits set.

Type: string
The relative path of the file to map the key to. May not be an absolute path. May not contain the path element '..'. May not start with the string '..'.

Type: string
Name of the referent. More info: https://kubernetes.io/docs/concepts/overview/working-with-objects/names/#names

Type: boolean
Specify whether the ConfigMap or it's keys must be defined

Type: object
DownwardAPI represents downward API about the pod that should populate this volume

Type: integerFormat: int32
Optional: mode bits to use on created files by default. Must be a value between 0 and 0777. Defaults to 0644. Directories within the path are not affected by this setting. This might be in conflict with other options that affect the file mode, like fsGroup, and the result can be other mode bits set.

Type: array
Items is a list of downward API volume file No Additional Items

Each item of this array must be:

Type: object
DownwardAPIVolumeFile represents information to create the file containing the pod field

Type: object
Required: Selects a field of the pod: only annotations, labels, name and namespace are supported.Same definition as fieldRef

Type: integerFormat: int32
Optional: mode bits to use on this file, must be a value between 0 and 0777. If not specified, the volume defaultMode will be used. This might be in conflict with other options that affect the file mode, like fsGroup, and the result can be other mode bits set.

Type: string
Required: Path is the relative path name of the file to be created. Must not be absolute or contain the '..' path. Must be utf-8 encoded. The first item of the relative path must not start with '..'

Type: object
Selects a resource of the container: only resources limits and requests (limits.cpu, limits.memory, requests.cpu and requests.memory) are currently supported.Same definition as resourceFieldRef

Type: object
EmptyDir represents a temporary directory that shares a pod's lifetime. More info: https://kubernetes.io/docs/concepts/storage/volumes#emptydir

Type: string
What type of storage medium should back this directory. The default is "" which means to use the node's default medium. Must be an empty string (default) or Memory. More info: https://kubernetes.io/docs/concepts/storage/volumes#emptydir

Type: object
Total amount of local storage required for this EmptyDir volume. The size limit is also applicable for memory medium. The maximum usage on memory medium EmptyDir would be the minimum value between the SizeLimit specified here and the sum of memory limits of all containers in a pod. The default is nil which means that the limit is undefined. More info: http://kubernetes.io/docs/user-guide/volumes#emptydirSame definition as divisor

Type: object
FC represents a Fibre Channel resource that is attached to a kubelet's host machine and then exposed to the pod.

Type: string
Filesystem type to mount. Must be a filesystem type supported by the host operating system. Ex. "ext4", "xfs", "ntfs". Implicitly inferred to be "ext4" if unspecified.

Type: integerFormat: int32
Optional: FC target lun number

Type: boolean
Optional: Defaults to false (read/write). ReadOnly here will force the ReadOnly setting in VolumeMounts.

Type: array of string
Optional: FC target worldwide names (WWNs) No Additional Items

Each item of this array must be:

Type: array of string
Optional: FC volume world wide identifiers (wwids) Either wwids or combination of targetWWNs and lun must be set, but not both simultaneously. No Additional Items

Each item of this array must be:

Type: object
FlexVolume represents a generic volume resource that is provisioned/attached using an exec based plugin.

Type: string
Driver is the name of the driver to use for this volume.

Type: string
Filesystem type to mount. Must be a filesystem type supported by the host operating system. Ex. "ext4", "xfs", "ntfs". The default filesystem depends on FlexVolume script.

Type: object
Optional: Extra command options if any.

Each additional property must conform to the following schema

Type: string

Type: boolean
Optional: Defaults to false (read/write). ReadOnly here will force the ReadOnly setting in VolumeMounts.

Type: object
Optional: SecretRef is reference to the secret object containing sensitive information to pass to the plugin scripts. This may be empty if no secret object is specified. If the secret object contains more than one secret, all secrets are passed to the plugin scripts.Same definition as oneOf_i14_spec_template_spec_imagePullSecrets_items

Type: object
Flocker represents a Flocker volume attached to a kubelet's host machine. This depends on the Flocker control service being running

Type: string
Name of the dataset stored as metadata -> name on the dataset for Flocker should be considered as deprecated

Type: string
UUID of the dataset. This is unique identifier of a Flocker dataset

Type: object
GCEPersistentDisk represents a GCE Disk resource that is attached to a kubelet's host machine and then exposed to the pod. More info: https://kubernetes.io/docs/concepts/storage/volumes#gcepersistentdisk

Type: string
Filesystem type of the volume that you want to mount. Tip: Ensure that the filesystem type is supported by the host operating system. Examples: "ext4", "xfs", "ntfs". Implicitly inferred to be "ext4" if unspecified. More info: https://kubernetes.io/docs/concepts/storage/volumes#gcepersistentdisk

Type: integerFormat: int32
The partition in the volume that you want to mount. If omitted, the default is to mount by volume name. Examples: For volume /dev/sda1, you specify the partition as "1". Similarly, the volume partition for /dev/sda is "0" (or you can leave the property empty). More info: https://kubernetes.io/docs/concepts/storage/volumes#gcepersistentdisk

Type: string
Unique name of the PD resource in GCE. Used to identify the disk in GCE. More info: https://kubernetes.io/docs/concepts/storage/volumes#gcepersistentdisk

Type: boolean
ReadOnly here will force the ReadOnly setting in VolumeMounts. Defaults to false. More info: https://kubernetes.io/docs/concepts/storage/volumes#gcepersistentdisk

Type: object
GitRepo represents a git repository at a particular revision. DEPRECATED: GitRepo is deprecated. To provision a container with a git repo, mount an EmptyDir into an InitContainer that clones the repo using git, then mount the EmptyDir into the Pod's container.

Type: string
Target directory name. Must not contain or start with '..'. If '.' is supplied, the volume directory will be the git repository. Otherwise, if specified, the volume will contain the git repository in the subdirectory with the given name.

Type: string
Commit hash for the specified revision.

Type: object
Glusterfs represents a Glusterfs mount on the host that shares a pod's lifetime. More info: https://releases.k8s.io/HEAD/examples/volumes/glusterfs/README.md

Type: string
EndpointsName is the endpoint name that details Glusterfs topology. More info: https://releases.k8s.io/HEAD/examples/volumes/glusterfs/README.md#create-a-pod

Type: string
Path is the Glusterfs volume path. More info: https://releases.k8s.io/HEAD/examples/volumes/glusterfs/README.md#create-a-pod

Type: boolean
ReadOnly here will force the Glusterfs volume to be mounted with read-only permissions. Defaults to false. More info: https://releases.k8s.io/HEAD/examples/volumes/glusterfs/README.md#create-a-pod

Type: object
HostPath represents a pre-existing file or directory on the host machine that is directly exposed to the container. This is generally used for system agents or other privileged things that are allowed to see the host machine. Most containers will NOT need this. More info: https://kubernetes.io/docs/concepts/storage/volumes#hostpath

Type: string
Path of the directory on the host. If the path is a symlink, it will follow the link to the real path. More info: https://kubernetes.io/docs/concepts/storage/volumes#hostpath

Type: string
Type for HostPath Volume Defaults to "" More info: https://kubernetes.io/docs/concepts/storage/volumes#hostpath

Type: object
ISCSI represents an ISCSI Disk resource that is attached to a kubelet's host machine and then exposed to the pod. More info: https://releases.k8s.io/HEAD/examples/volumes/iscsi/README.md

Type: boolean
whether support iSCSI Discovery CHAP authentication

Type: boolean
whether support iSCSI Session CHAP authentication

Type: string
Filesystem type of the volume that you want to mount. Tip: Ensure that the filesystem type is supported by the host operating system. Examples: "ext4", "xfs", "ntfs". Implicitly inferred to be "ext4" if unspecified. More info: https://kubernetes.io/docs/concepts/storage/volumes#iscsi

Type: string
Custom iSCSI Initiator Name. If initiatorName is specified with iscsiInterface simultaneously, new iSCSI interface : will be created for the connection.

Type: string
Target iSCSI Qualified Name.

Type: string
iSCSI Interface Name that uses an iSCSI transport. Defaults to 'default' (tcp).

Type: integerFormat: int32
iSCSI Target Lun number.

Type: array of string
iSCSI Target Portal List. The portal is either an IP or ip_addr:port if the port is other than default (typically TCP ports 860 and 3260). No Additional Items

Each item of this array must be:

Type: boolean
ReadOnly here will force the ReadOnly setting in VolumeMounts. Defaults to false.

Type: string
iSCSI Target Portal. The Portal is either an IP or ip_addr:port if the port is other than default (typically TCP ports 860 and 3260).

Type: string
Volume's name. Must be a DNS_LABEL and unique within the pod. More info: https://kubernetes.io/docs/concepts/overview/working-with-objects/names/#names

Type: object
NFS represents an NFS mount on the host that shares a pod's lifetime More info: https://kubernetes.io/docs/concepts/storage/volumes#nfs

Type: string
Path that is exported by the NFS server. More info: https://kubernetes.io/docs/concepts/storage/volumes#nfs

Type: boolean
ReadOnly here will force the NFS export to be mounted with read-only permissions. Defaults to false. More info: https://kubernetes.io/docs/concepts/storage/volumes#nfs

Type: string
Server is the hostname or IP address of the NFS server. More info: https://kubernetes.io/docs/concepts/storage/volumes#nfs

Type: object
PersistentVolumeClaimVolumeSource represents a reference to a PersistentVolumeClaim in the same namespace. More info: https://kubernetes.io/docs/concepts/storage/persistent-volumes#persistentvolumeclaims

Type: string
ClaimName is the name of a PersistentVolumeClaim in the same namespace as the pod using this volume. More info: https://kubernetes.io/docs/concepts/storage/persistent-volumes#persistentvolumeclaims

Type: boolean
Will force the ReadOnly setting in VolumeMounts. Default false.

Type: object
PhotonPersistentDisk represents a PhotonController persistent disk attached and mounted on kubelets host machine

Type: string
Filesystem type to mount. Must be a filesystem type supported by the host operating system. Ex. "ext4", "xfs", "ntfs". Implicitly inferred to be "ext4" if unspecified.

Type: string
ID that identifies Photon Controller persistent disk

Type: object
PortworxVolume represents a portworx volume attached and mounted on kubelets host machine

Type: string
FSType represents the filesystem type to mount Must be a filesystem type supported by the host operating system. Ex. "ext4", "xfs". Implicitly inferred to be "ext4" if unspecified.

Type: boolean
Defaults to false (read/write). ReadOnly here will force the ReadOnly setting in VolumeMounts.

Type: string
VolumeID uniquely identifies a Portworx volume

Type: object
Items for all in one resources secrets, configmaps, and downward API

Type: integerFormat: int32
Mode bits to use on created files by default. Must be a value between 0 and 0777. Directories within the path are not affected by this setting. This might be in conflict with other options that affect the file mode, like fsGroup, and the result can be other mode bits set.

Type: array
list of volume projections No Additional Items

Each item of this array must be:

Type: object
Projection that may be projected along with other supported volume types

Type: object
information about the configMap data to project

Type: array
If unspecified, each key-value pair in the Data field of the referenced ConfigMap will be projected into the volume as a file whose name is the key and content is the value. If specified, the listed keys will be projected into the specified paths, and unlisted keys will not be present. If a key is specified which is not present in the ConfigMap, the volume setup will error unless it is marked optional. Paths must be relative and may not contain the '..' path or start with '..'. No Additional Items

Each item of this array must be:

Type: string
Name of the referent. More info: https://kubernetes.io/docs/concepts/overview/working-with-objects/names/#names

Type: boolean
Specify whether the ConfigMap or it's keys must be defined

Type: object
information about the downwardAPI data to project

Type: array
Items is a list of DownwardAPIVolume file No Additional Items

Each item of this array must be:

Type: object
information about the secret data to project

Type: array
If unspecified, each key-value pair in the Data field of the referenced Secret will be projected into the volume as a file whose name is the key and content is the value. If specified, the listed keys will be projected into the specified paths, and unlisted keys will not be present. If a key is specified which is not present in the Secret, the volume setup will error unless it is marked optional. Paths must be relative and may not contain the '..' path or start with '..'. No Additional Items

Each item of this array must be:

Type: string
Name of the referent. More info: https://kubernetes.io/docs/concepts/overview/working-with-objects/names/#names

Type: boolean
Specify whether the Secret or its key must be defined

Type: object
information about the serviceAccountToken data to project

Type: string
Audience is the intended audience of the token. A recipient of a token must identify itself with an identifier specified in the audience of the token, and otherwise should reject the token. The audience defaults to the identifier of the apiserver.

Type: integerFormat: int64
ExpirationSeconds is the requested duration of validity of the service account token. As the token approaches expiration, the kubelet volume plugin will proactively rotate the service account token. The kubelet will start trying to rotate the token if the token is older than 80 percent of its time to live or if the token is older than 24 hours.Defaults to 1 hour and must be at least 10 minutes.

Type: string
Path is the path relative to the mount point of the file to project the token into.

Type: object
Quobyte represents a Quobyte mount on the host that shares a pod's lifetime

Type: string
Group to map volume access to Default is no group

Type: boolean
ReadOnly here will force the Quobyte volume to be mounted with read-only permissions. Defaults to false.

Type: string
Registry represents a single or multiple Quobyte Registry services specified as a string as host:port pair (multiple entries are separated with commas) which acts as the central registry for volumes

Type: string
User to map volume access to Defaults to serivceaccount user

Type: string
Volume is a string that references an already created Quobyte volume by name.

Type: object
RBD represents a Rados Block Device mount on the host that shares a pod's lifetime. More info: https://releases.k8s.io/HEAD/examples/volumes/rbd/README.md

Type: string
Filesystem type of the volume that you want to mount. Tip: Ensure that the filesystem type is supported by the host operating system. Examples: "ext4", "xfs", "ntfs". Implicitly inferred to be "ext4" if unspecified. More info: https://kubernetes.io/docs/concepts/storage/volumes#rbd

Type: string
The rados image name. More info: https://releases.k8s.io/HEAD/examples/volumes/rbd/README.md#how-to-use-it

Type: string
Keyring is the path to key ring for RBDUser. Default is /etc/ceph/keyring. More info: https://releases.k8s.io/HEAD/examples/volumes/rbd/README.md#how-to-use-it

Type: array of string
A collection of Ceph monitors. More info: https://releases.k8s.io/HEAD/examples/volumes/rbd/README.md#how-to-use-it No Additional Items

Each item of this array must be:

Type: string
The rados pool name. Default is rbd. More info: https://releases.k8s.io/HEAD/examples/volumes/rbd/README.md#how-to-use-it

Type: boolean
ReadOnly here will force the ReadOnly setting in VolumeMounts. Defaults to false. More info: https://releases.k8s.io/HEAD/examples/volumes/rbd/README.md#how-to-use-it

Type: object
SecretRef is name of the authentication secret for RBDUser. If provided overrides keyring. Default is nil. More info: https://releases.k8s.io/HEAD/examples/volumes/rbd/README.md#how-to-use-itSame definition as oneOf_i14_spec_template_spec_imagePullSecrets_items

Type: string
The rados user name. Default is admin. More info: https://releases.k8s.io/HEAD/examples/volumes/rbd/README.md#how-to-use-it

Type: object
ScaleIO represents a ScaleIO persistent volume attached and mounted on Kubernetes nodes.

Type: string
Filesystem type to mount. Must be a filesystem type supported by the host operating system. Ex. "ext4", "xfs", "ntfs". Default is "xfs".

Type: string
The host address of the ScaleIO API Gateway.

Type: string
The name of the ScaleIO Protection Domain for the configured storage.

Type: boolean
Defaults to false (read/write). ReadOnly here will force the ReadOnly setting in VolumeMounts.

Type: object
SecretRef references to the secret for ScaleIO user and other sensitive information. If this is not provided, Login operation will fail.Same definition as oneOf_i14_spec_template_spec_imagePullSecrets_items

Type: boolean
Flag to enable/disable SSL communication with Gateway, default false

Type: string
Indicates whether the storage for a volume should be ThickProvisioned or ThinProvisioned. Default is ThinProvisioned.

Type: string
The ScaleIO Storage Pool associated with the protection domain.

Type: string
The name of the storage system as configured in ScaleIO.

Type: string
The name of a volume already created in the ScaleIO system that is associated with this volume source.

Type: object
Secret represents a secret that should populate this volume. More info: https://kubernetes.io/docs/concepts/storage/volumes#secret

Type: integerFormat: int32
Optional: mode bits to use on created files by default. Must be a value between 0 and 0777. Defaults to 0644. Directories within the path are not affected by this setting. This might be in conflict with other options that affect the file mode, like fsGroup, and the result can be other mode bits set.

Type: array
If unspecified, each key-value pair in the Data field of the referenced Secret will be projected into the volume as a file whose name is the key and content is the value. If specified, the listed keys will be projected into the specified paths, and unlisted keys will not be present. If a key is specified which is not present in the Secret, the volume setup will error unless it is marked optional. Paths must be relative and may not contain the '..' path or start with '..'. No Additional Items

Each item of this array must be:

Type: boolean
Specify whether the Secret or it's keys must be defined

Type: string
Name of the secret in the pod's namespace to use. More info: https://kubernetes.io/docs/concepts/storage/volumes#secret

Type: object
StorageOS represents a StorageOS volume attached and mounted on Kubernetes nodes.

Type: string
Filesystem type to mount. Must be a filesystem type supported by the host operating system. Ex. "ext4", "xfs", "ntfs". Implicitly inferred to be "ext4" if unspecified.

Type: boolean
Defaults to false (read/write). ReadOnly here will force the ReadOnly setting in VolumeMounts.

Type: object
SecretRef specifies the secret to use for obtaining the StorageOS API credentials. If not specified, default values will be attempted.Same definition as oneOf_i14_spec_template_spec_imagePullSecrets_items

Type: string
VolumeName is the human-readable name of the StorageOS volume. Volume names are only unique within a namespace.

Type: string
VolumeNamespace specifies the scope of the volume within StorageOS. If no namespace is specified then the Pod's namespace will be used. This allows the Kubernetes name scoping to be mirrored within StorageOS for tighter integration. Set VolumeName to any name to override the default behaviour. Set to "default" if you are not using namespaces within StorageOS. Namespaces that do not pre-exist within StorageOS will be created.

Type: object
VsphereVolume represents a vSphere volume attached and mounted on kubelets host machine

Type: string
Filesystem type to mount. Must be a filesystem type supported by the host operating system. Ex. "ext4", "xfs", "ntfs". Implicitly inferred to be "ext4" if unspecified.

Type: string
Storage Policy Based Management (SPBM) profile ID associated with the StoragePolicyName.

Type: string
Storage Policy Based Management (SPBM) profile name.

Type: string
Path that identifies vSphere volume vmdk

Type: object
An update strategy to replace existing DaemonSet pods with new pods.

Type: object
Rolling update config params. Present only if type = "RollingUpdate".

Type: object
The maximum number of DaemonSet pods that can be unavailable during the update. Value can be an absolute number (ex: 5) or a percentage of total number of DaemonSet pods at the start of the update (ex: 10%). Absolute number is calculated from percentage by rounding up. This cannot be 0. Default value is 1. Example: when this is set to 30%, at most 30% of the total number of nodes that should be running the daemon pod (i.e. status.desiredNumberScheduled) can have their pods stopped for an update at any given time. The update starts by stopping at most 30% of those DaemonSet pods and then brings up new DaemonSet pods in their place. Once the new pods are available, it then proceeds onto other DaemonSet pods, thus ensuring that at least 70% of original number of DaemonSet pods are available at all times during the update.
Same definition as port

Type: string
Type of daemon set update. Can be "RollingUpdate" or "OnDelete". Default is RollingUpdate.

Type: object
The current status of this daemon set. This data may be out of date by some window of time. Populated by the system. Read-only. More info: https://git.k8s.io/community/contributors/devel/api-conventions.md#spec-and-status

Type: integerFormat: int32
Count of hash collisions for the DaemonSet. The DaemonSet controller uses this field as a collision avoidance mechanism when it needs to create the name for the newest ControllerRevision.

Type: array
Represents the latest available observations of a DaemonSet's current state. No Additional Items

Each item of this array must be:

Type: object
DaemonSetCondition describes the state of a DaemonSet at a certain point.

Type: string
Last time the condition transitioned from one status to another.Same definition as creationTimestamp

Type: string
A human readable message indicating details about the transition.

Type: string
The reason for the condition's last transition.

Type: string
Status of the condition, one of True, False, Unknown.

Type: string
Type of DaemonSet condition.

Type: integerFormat: int32
The number of nodes that are running at least 1 daemon pod and are supposed to run the daemon pod. More info: https://kubernetes.io/docs/concepts/workloads/controllers/daemonset/

Type: integerFormat: int32
The total number of nodes that should be running the daemon pod (including nodes correctly running the daemon pod). More info: https://kubernetes.io/docs/concepts/workloads/controllers/daemonset/

Type: integerFormat: int32
The number of nodes that should be running the daemon pod and have one or more of the daemon pod running and available (ready for at least spec.minReadySeconds)

Type: integerFormat: int32
The number of nodes that are running the daemon pod, but are not supposed to run the daemon pod. More info: https://kubernetes.io/docs/concepts/workloads/controllers/daemonset/

Type: integerFormat: int32
The number of nodes that should be running the daemon pod and have one or more of the daemon pod running and ready.

Type: integerFormat: int32
The number of nodes that should be running the daemon pod and have none of the daemon pod running and available (ready for at least spec.minReadySeconds)

Type: integerFormat: int64
The most recent generation observed by the daemon set controller.

Type: integerFormat: int32
The total number of nodes that are running updated daemon pod
Type: object
DaemonSetCondition describes the state of a DaemonSet at a certain point.Same definition as oneOf_i14_status_conditions_items
Type: object
DaemonSetList is a collection of daemon sets.

Type: string
APIVersion defines the versioned schema of this representation of an object. Servers should convert recognized schemas to the latest internal value, and may reject unrecognized values. More info: https://git.k8s.io/community/contributors/devel/api-conventions.md#resources

Type: array
A list of daemon sets. No Additional Items

Each item of this array must be:

Type: object
DaemonSet represents the configuration of a daemon set.Same definition as oneOf_i14

Type: enum (of string)
Kind is a string value representing the REST resource this object represents. Servers may infer this from the endpoint the client submits requests to. Cannot be updated. In CamelCase. More info: https://git.k8s.io/community/contributors/devel/api-conventions.md#types-kinds

Must be one of:

  • "DaemonSetList"

Type: object
Standard list metadata. More info: https://git.k8s.io/community/contributors/devel/api-conventions.md#metadataSame definition as metadata
Type: object
DaemonSetSpec is the specification of a daemon set.Same definition as spec
Type: object
DaemonSetStatus represents the current status of a daemon set.Same definition as status
Type: object
DaemonSetUpdateStrategy is a struct used to control the update strategy for a DaemonSet.Same definition as updateStrategy
Type: object
Deployment enables declarative updates for Pods and ReplicaSets.

Type: string
APIVersion defines the versioned schema of this representation of an object. Servers should convert recognized schemas to the latest internal value, and may reject unrecognized values. More info: https://git.k8s.io/community/contributors/devel/api-conventions.md#resources

Type: enum (of string)
Kind is a string value representing the REST resource this object represents. Servers may infer this from the endpoint the client submits requests to. Cannot be updated. In CamelCase. More info: https://git.k8s.io/community/contributors/devel/api-conventions.md#types-kinds

Must be one of:

  • "Deployment"

Type: object
Standard object metadata.Same definition as metadata

Type: object
Specification of the desired behavior of the Deployment.

Type: integerFormat: int32
Minimum number of seconds for which a newly created pod should be ready without any of its container crashing, for it to be considered available. Defaults to 0 (pod will be considered available as soon as it is ready)

Type: boolean
Indicates that the deployment is paused.

Type: integerFormat: int32
The maximum time in seconds for a deployment to make progress before it is considered to be failed. The deployment controller will continue to process failed deployments and a condition with a ProgressDeadlineExceeded reason will be surfaced in the deployment status. Note that progress will not be estimated during the time a deployment is paused. Defaults to 600s.

Type: integerFormat: int32
Number of desired pods. This is a pointer to distinguish between explicit zero and not specified. Defaults to 1.

Type: integerFormat: int32
The number of old ReplicaSets to retain to allow rollback. This is a pointer to distinguish between explicit zero and not specified. Defaults to 10.

Type: object
Label selector for pods. Existing ReplicaSets whose pods are selected by this will be the ones affected by this deployment. It must match the pod template's labels.Same definition as namespaceSelector

Type: object
The deployment strategy to use to replace existing pods with new ones.

Type: object
Rolling update config params. Present only if DeploymentStrategyType = RollingUpdate.

Type: object
The maximum number of pods that can be scheduled above the desired number of pods. Value can be an absolute number (ex: 5) or a percentage of desired pods (ex: 10%). This can not be 0 if MaxUnavailable is 0. Absolute number is calculated from percentage by rounding up. Defaults to 25%. Example: when this is set to 30%, the new ReplicaSet can be scaled up immediately when the rolling update starts, such that the total number of old and new pods do not exceed 130% of desired pods. Once old pods have been killed, new ReplicaSet can be scaled up further, ensuring that total number of pods running at any time during the update is at most 130% of desired pods.
Same definition as port

Type: object
The maximum number of pods that can be unavailable during the update. Value can be an absolute number (ex: 5) or a percentage of desired pods (ex: 10%). Absolute number is calculated from percentage by rounding down. This can not be 0 if MaxSurge is 0. Defaults to 25%. Example: when this is set to 30%, the old ReplicaSet can be scaled down to 70% of desired pods immediately when the rolling update starts. Once new pods are ready, old ReplicaSet can be scaled down further, followed by scaling up the new ReplicaSet, ensuring that the total number of pods available at all times during the update is at least 70% of desired pods.
Same definition as port

Type: string
Type of deployment. Can be "Recreate" or "RollingUpdate". Default is RollingUpdate.

Type: object
Template describes the pods that will be created.Same definition as template

Type: object
Most recently observed status of the Deployment.

Type: integerFormat: int32
Total number of available pods (ready for at least minReadySeconds) targeted by this deployment.

Type: integerFormat: int32
Count of hash collisions for the Deployment. The Deployment controller uses this field as a collision avoidance mechanism when it needs to create the name for the newest ReplicaSet.

Type: array
Represents the latest available observations of a deployment's current state. No Additional Items

Each item of this array must be:

Type: object
DeploymentCondition describes the state of a deployment at a certain point.

Type: string
Last time the condition transitioned from one status to another.Same definition as creationTimestamp

Type: string
The last time this condition was updated.Same definition as creationTimestamp

Type: string
A human readable message indicating details about the transition.

Type: string
The reason for the condition's last transition.

Type: string
Status of the condition, one of True, False, Unknown.

Type: string
Type of deployment condition.

Type: integerFormat: int64
The generation observed by the deployment controller.

Type: integerFormat: int32
Total number of ready pods targeted by this deployment.

Type: integerFormat: int32
Total number of non-terminated pods targeted by this deployment (their labels match the selector).

Type: integerFormat: int32
Total number of unavailable pods targeted by this deployment. This is the total number of pods that are still required for the deployment to have 100% available capacity. They may either be pods that are running but not yet available or pods that still have not been created.

Type: integerFormat: int32
Total number of non-terminated pods targeted by this deployment that have the desired template spec.
Type: object
DeploymentCondition describes the state of a deployment at a certain point.Same definition as oneOf_i20_status_conditions_items
Type: object
DeploymentList is a list of Deployments.

Type: string
APIVersion defines the versioned schema of this representation of an object. Servers should convert recognized schemas to the latest internal value, and may reject unrecognized values. More info: https://git.k8s.io/community/contributors/devel/api-conventions.md#resources

Type: array
Items is the list of Deployments. No Additional Items

Each item of this array must be:

Type: object
Deployment enables declarative updates for Pods and ReplicaSets.Same definition as oneOf_i20

Type: enum (of string)
Kind is a string value representing the REST resource this object represents. Servers may infer this from the endpoint the client submits requests to. Cannot be updated. In CamelCase. More info: https://git.k8s.io/community/contributors/devel/api-conventions.md#types-kinds

Must be one of:

  • "DeploymentList"

Type: object
Standard list metadata.Same definition as metadata
Type: object
DeploymentSpec is the specification of the desired behavior of the Deployment.Same definition as spec
Type: object
DeploymentStatus is the most recently observed status of the Deployment.Same definition as status
Type: object
DeploymentStrategy describes how to replace existing pods with new ones.Same definition as strategy
Type: object
ReplicaSet ensures that a specified number of pod replicas are running at any given time.

Type: string
APIVersion defines the versioned schema of this representation of an object. Servers should convert recognized schemas to the latest internal value, and may reject unrecognized values. More info: https://git.k8s.io/community/contributors/devel/api-conventions.md#resources

Type: enum (of string)
Kind is a string value representing the REST resource this object represents. Servers may infer this from the endpoint the client submits requests to. Cannot be updated. In CamelCase. More info: https://git.k8s.io/community/contributors/devel/api-conventions.md#types-kinds

Must be one of:

  • "ReplicaSet"

Type: object
If the Labels of a ReplicaSet are empty, they are defaulted to be the same as the Pod(s) that the ReplicaSet manages. Standard object's metadata. More info: https://git.k8s.io/community/contributors/devel/api-conventions.md#metadataSame definition as metadata

Type: object
Spec defines the specification of the desired behavior of the ReplicaSet. More info: https://git.k8s.io/community/contributors/devel/api-conventions.md#spec-and-status

Type: integerFormat: int32
Minimum number of seconds for which a newly created pod should be ready without any of its container crashing, for it to be considered available. Defaults to 0 (pod will be considered available as soon as it is ready)

Type: integerFormat: int32
Replicas is the number of desired replicas. This is a pointer to distinguish between explicit zero and unspecified. Defaults to 1. More info: https://kubernetes.io/docs/concepts/workloads/controllers/replicationcontroller/#what-is-a-replicationcontroller

Type: object
Selector is a label query over pods that should match the replica count. Label keys and values that must match in order to be controlled by this replica set. It must match the pod template's labels. More info: https://kubernetes.io/docs/concepts/overview/working-with-objects/labels/#label-selectorsSame definition as namespaceSelector

Type: object
Template is the object that describes the pod that will be created if insufficient replicas are detected. More info: https://kubernetes.io/docs/concepts/workloads/controllers/replicationcontroller#pod-templateSame definition as template

Type: object
Status is the most recently observed status of the ReplicaSet. This data may be out of date by some window of time. Populated by the system. Read-only. More info: https://git.k8s.io/community/contributors/devel/api-conventions.md#spec-and-status

Type: integerFormat: int32
The number of available replicas (ready for at least minReadySeconds) for this replica set.

Type: array
Represents the latest available observations of a replica set's current state. No Additional Items

Each item of this array must be:

Type: object
ReplicaSetCondition describes the state of a replica set at a certain point.

Type: string
The last time the condition transitioned from one status to another.Same definition as creationTimestamp

Type: string
A human readable message indicating details about the transition.

Type: string
The reason for the condition's last transition.

Type: string
Status of the condition, one of True, False, Unknown.

Type: string
Type of replica set condition.

Type: integerFormat: int32
The number of pods that have labels matching the labels of the pod template of the replicaset.

Type: integerFormat: int64
ObservedGeneration reflects the generation of the most recently observed ReplicaSet.

Type: integerFormat: int32
The number of ready replicas for this replica set.

Type: integerFormat: int32
Replicas is the most recently oberved number of replicas. More info: https://kubernetes.io/docs/concepts/workloads/controllers/replicationcontroller/#what-is-a-replicationcontroller
Type: object
ReplicaSetCondition describes the state of a replica set at a certain point.Same definition as oneOf_i26_status_conditions_items
Type: object
ReplicaSetList is a collection of ReplicaSets.

Type: string
APIVersion defines the versioned schema of this representation of an object. Servers should convert recognized schemas to the latest internal value, and may reject unrecognized values. More info: https://git.k8s.io/community/contributors/devel/api-conventions.md#resources

Type: array
List of ReplicaSets. More info: https://kubernetes.io/docs/concepts/workloads/controllers/replicationcontroller No Additional Items

Each item of this array must be:

Type: object
ReplicaSet ensures that a specified number of pod replicas are running at any given time.Same definition as oneOf_i26

Type: enum (of string)
Kind is a string value representing the REST resource this object represents. Servers may infer this from the endpoint the client submits requests to. Cannot be updated. In CamelCase. More info: https://git.k8s.io/community/contributors/devel/api-conventions.md#types-kinds

Must be one of:

  • "ReplicaSetList"

Type: object
Standard list metadata. More info: https://git.k8s.io/community/contributors/devel/api-conventions.md#types-kindsSame definition as metadata
Type: object
ReplicaSetSpec is the specification of a ReplicaSet.Same definition as spec
Type: object
ReplicaSetStatus represents the current status of a ReplicaSet.Same definition as status
Type: object
Spec to control the desired behavior of daemon set rolling update.Same definition as rollingUpdate
Type: object
Spec to control the desired behavior of rolling update.Same definition as rollingUpdate
Type: object
RollingUpdateStatefulSetStrategy is used to communicate parameter for RollingUpdateStatefulSetStrategyType.

Type: integerFormat: int32
Partition indicates the ordinal at which the StatefulSet should be partitioned. Default value is 0.
Type: object
StatefulSet represents a set of pods with consistent identities. Identities are defined as: - Network: A single stable DNS and hostname. - Storage: As many VolumeClaims as requested. The StatefulSet guarantees that a given network identity will always map to the same storage identity.

Type: string
APIVersion defines the versioned schema of this representation of an object. Servers should convert recognized schemas to the latest internal value, and may reject unrecognized values. More info: https://git.k8s.io/community/contributors/devel/api-conventions.md#resources

Type: enum (of string)
Kind is a string value representing the REST resource this object represents. Servers may infer this from the endpoint the client submits requests to. Cannot be updated. In CamelCase. More info: https://git.k8s.io/community/contributors/devel/api-conventions.md#types-kinds

Must be one of:

  • "StatefulSet"

Type: object
ObjectMeta is metadata that all persisted resources must have, which includes all objects users must create.Same definition as metadata

Type: object
Spec defines the desired identities of pods in this set.

Type: string
podManagementPolicy controls how pods are created during initial scale up, when replacing pods on nodes, or when scaling down. The default policy is `OrderedReady`, where pods are created in increasing order (pod-0, then pod-1, etc) and the controller will wait until each pod is ready before continuing. When scaling down, the pods are removed in the opposite order. The alternative policy is `Parallel` which will create pods in parallel to match the desired scale without waiting, and on scale down will delete all pods at once.

Type: integerFormat: int32
replicas is the desired number of replicas of the given Template. These are replicas in the sense that they are instantiations of the same Template, but individual replicas also have a consistent identity. If unspecified, defaults to 1.

Type: integerFormat: int32
revisionHistoryLimit is the maximum number of revisions that will be maintained in the StatefulSet's revision history. The revision history consists of all revisions not represented by a currently applied StatefulSetSpec version. The default value is 10.

Type: object
selector is a label query over pods that should match the replica count. It must match the pod template's labels. More info: https://kubernetes.io/docs/concepts/overview/working-with-objects/labels/#label-selectorsSame definition as namespaceSelector

Type: string
serviceName is the name of the service that governs this StatefulSet. This service must exist before the StatefulSet, and is responsible for the network identity of the set. Pods get DNS/hostnames that follow the pattern: pod-specific-string.serviceName.default.svc.cluster.local where "pod-specific-string" is managed by the StatefulSet controller.

Type: object
template is the object that describes the pod that will be created if insufficient replicas are detected. Each pod stamped out by the StatefulSet will fulfill this Template, but have a unique identity from the rest of the StatefulSet.Same definition as template

Type: object
updateStrategy indicates the StatefulSetUpdateStrategy that will be employed to update Pods in the StatefulSet when a revision is made to Template.

Type: object
RollingUpdate is used to communicate parameters when Type is RollingUpdateStatefulSetStrategyType.Same definition as oneOf_i33

Type: string
Type indicates the type of the StatefulSetUpdateStrategy. Default is RollingUpdate.

Type: array
volumeClaimTemplates is a list of claims that pods are allowed to reference. The StatefulSet controller is responsible for mapping network identities to claims in a way that maintains the identity of a pod. Every claim in this list must have at least one matching (by name) volumeMount in one container in the template. A claim in this list takes precedence over any volumes in the template, with the same name. No Additional Items

Each item of this array must be:

Type: object
PersistentVolumeClaim is a user's request for and claim to a persistent volume

Type: string
APIVersion defines the versioned schema of this representation of an object. Servers should convert recognized schemas to the latest internal value, and may reject unrecognized values. More info: https://git.k8s.io/community/contributors/devel/api-conventions.md#resources

Type: enum (of string)
Kind is a string value representing the REST resource this object represents. Servers may infer this from the endpoint the client submits requests to. Cannot be updated. In CamelCase. More info: https://git.k8s.io/community/contributors/devel/api-conventions.md#types-kinds

Must be one of:

  • "PersistentVolumeClaim"

Type: object
Standard object's metadata. More info: https://git.k8s.io/community/contributors/devel/api-conventions.md#metadataSame definition as metadata

Type: object
Spec defines the desired characteristics of a volume requested by a pod author. More info: https://kubernetes.io/docs/concepts/storage/persistent-volumes#persistentvolumeclaims

Type: array of string
AccessModes contains the desired access modes the volume should have. More info: https://kubernetes.io/docs/concepts/storage/persistent-volumes#access-modes-1 No Additional Items

Each item of this array must be:

Type: object
This field requires the VolumeSnapshotDataSource alpha feature gate to be enabled and currently VolumeSnapshot is the only supported data source. If the provisioner can support VolumeSnapshot data source, it will create a new volume and data will be restored to the volume at the same time. If the provisioner does not support VolumeSnapshot data source, volume will not be created and the failure will be reported as an event. In the future, we plan to support more data source types and the behavior of the provisioner may change.

Type: string
APIGroup is the group for the resource being referenced. If APIGroup is not specified, the specified Kind must be in the core API group. For any other third-party types, APIGroup is required.

Type: string
Kind is the type of resource being referenced

Type: string
Name is the name of resource being referenced

Type: object
Resources represents the minimum resources the volume should have. More info: https://kubernetes.io/docs/concepts/storage/persistent-volumes#resourcesSame definition as resources

Type: object
A label query over volumes to consider for binding.Same definition as namespaceSelector

Type: string
Name of the StorageClass required by the claim. More info: https://kubernetes.io/docs/concepts/storage/persistent-volumes#class-1

Type: string
volumeMode defines what type of volume is required by the claim. Value of Filesystem is implied when not included in claim spec. This is a beta feature.

Type: string
VolumeName is the binding reference to the PersistentVolume backing this claim.

Type: object
Status represents the current information/status of a persistent volume claim. Read-only. More info: https://kubernetes.io/docs/concepts/storage/persistent-volumes#persistentvolumeclaims

Type: array of string
AccessModes contains the actual access modes the volume backing the PVC has. More info: https://kubernetes.io/docs/concepts/storage/persistent-volumes#access-modes-1 No Additional Items

Each item of this array must be:

Type: object
Represents the actual resources of the underlying volume.

Type: array
Current Condition of persistent volume claim. If underlying persistent volume is being resized then the Condition will be set to 'ResizeStarted'. No Additional Items

Each item of this array must be:

Type: object
PersistentVolumeClaimCondition contails details about state of pvc

Type: string
Human-readable message indicating details about last transition.

Type: string
Unique, this should be a short, machine understandable string that gives the reason for condition's last transition. If it reports "ResizeStarted" that means the underlying persistent volume is being resized.

Type: string
Phase represents the current phase of PersistentVolumeClaim.

Type: object
Status is the current status of Pods in this StatefulSet. This data may be out of date by some window of time.

Type: integerFormat: int32
collisionCount is the count of hash collisions for the StatefulSet. The StatefulSet controller uses this field as a collision avoidance mechanism when it needs to create the name for the newest ControllerRevision.

Type: array
Represents the latest available observations of a statefulset's current state. No Additional Items

Each item of this array must be:

Type: object
StatefulSetCondition describes the state of a statefulset at a certain point.

Type: string
Last time the condition transitioned from one status to another.Same definition as creationTimestamp

Type: string
A human readable message indicating details about the transition.

Type: string
The reason for the condition's last transition.

Type: string
Status of the condition, one of True, False, Unknown.

Type: string
Type of statefulset condition.

Type: integerFormat: int32
currentReplicas is the number of Pods created by the StatefulSet controller from the StatefulSet version indicated by currentRevision.

Type: string
currentRevision, if not empty, indicates the version of the StatefulSet used to generate Pods in the sequence [0,currentReplicas).

Type: integerFormat: int64
observedGeneration is the most recent generation observed for this StatefulSet. It corresponds to the StatefulSet's generation, which is updated on mutation by the API Server.

Type: integerFormat: int32
readyReplicas is the number of Pods created by the StatefulSet controller that have a Ready Condition.

Type: integerFormat: int32
replicas is the number of Pods created by the StatefulSet controller.

Type: string
updateRevision, if not empty, indicates the version of the StatefulSet used to generate Pods in the sequence [replicas-updatedReplicas,replicas)

Type: integerFormat: int32
updatedReplicas is the number of Pods created by the StatefulSet controller from the StatefulSet version indicated by updateRevision.
Type: object
StatefulSetCondition describes the state of a statefulset at a certain point.Same definition as oneOf_i34_status_conditions_items
Type: object
StatefulSetList is a collection of StatefulSets.

Type: string
APIVersion defines the versioned schema of this representation of an object. Servers should convert recognized schemas to the latest internal value, and may reject unrecognized values. More info: https://git.k8s.io/community/contributors/devel/api-conventions.md#resources

Type: array
No Additional Items

Each item of this array must be:

Type: object
StatefulSet represents a set of pods with consistent identities. Identities are defined as: - Network: A single stable DNS and hostname. - Storage: As many VolumeClaims as requested. The StatefulSet guarantees that a given network identity will always map to the same storage identity.Same definition as oneOf_i34

Type: enum (of string)
Kind is a string value representing the REST resource this object represents. Servers may infer this from the endpoint the client submits requests to. Cannot be updated. In CamelCase. More info: https://git.k8s.io/community/contributors/devel/api-conventions.md#types-kinds

Must be one of:

  • "StatefulSetList"

Type: object
ListMeta describes metadata that synthetic resources must have, including lists and various status objects. A resource may have only one of {ObjectMeta, ListMeta}.Same definition as metadata
Type: object
A StatefulSetSpec is the specification of a StatefulSet.Same definition as spec
Type: object
StatefulSetStatus represents the current state of a StatefulSet.Same definition as status
Type: object
StatefulSetUpdateStrategy indicates the strategy that the StatefulSet controller will use to perform updates. It includes any additional parameters necessary to perform the update for the indicated strategy.Same definition as updateStrategy
Type: object
DEPRECATED - This group version of ControllerRevision is deprecated by apps/v1beta2/ControllerRevision. See the release notes for more information. ControllerRevision implements an immutable snapshot of state data. Clients are responsible for serializing and deserializing the objects that contain their internal state. Once a ControllerRevision has been successfully created, it can not be updated. The API Server will fail validation of all requests that attempt to mutate the Data field. ControllerRevisions may, however, be deleted. Note that, due to its use by both the DaemonSet and StatefulSet controllers for update and rollback, this object is beta. However, it may be subject to name and representation changes in future releases, and clients should not depend on its stability. It is primarily for internal use by controllers.

Type: string
APIVersion defines the versioned schema of this representation of an object. Servers should convert recognized schemas to the latest internal value, and may reject unrecognized values. More info: https://git.k8s.io/community/contributors/devel/api-conventions.md#resources

Type: object
Data is the serialized representation of the state.Same definition as data

Type: enum (of string)
Kind is a string value representing the REST resource this object represents. Servers may infer this from the endpoint the client submits requests to. Cannot be updated. In CamelCase. More info: https://git.k8s.io/community/contributors/devel/api-conventions.md#types-kinds

Must be one of:

  • "ControllerRevision"

Type: object
Standard object's metadata. More info: https://git.k8s.io/community/contributors/devel/api-conventions.md#metadataSame definition as metadata

Type: integerFormat: int64
Revision indicates the revision of the state represented by Data.
Type: object
ControllerRevisionList is a resource containing a list of ControllerRevision objects.

Type: string
APIVersion defines the versioned schema of this representation of an object. Servers should convert recognized schemas to the latest internal value, and may reject unrecognized values. More info: https://git.k8s.io/community/contributors/devel/api-conventions.md#resources

Type: array
Items is the list of ControllerRevisions No Additional Items

Each item of this array must be:

Type: object
DEPRECATED - This group version of ControllerRevision is deprecated by apps/v1beta2/ControllerRevision. See the release notes for more information. ControllerRevision implements an immutable snapshot of state data. Clients are responsible for serializing and deserializing the objects that contain their internal state. Once a ControllerRevision has been successfully created, it can not be updated. The API Server will fail validation of all requests that attempt to mutate the Data field. ControllerRevisions may, however, be deleted. Note that, due to its use by both the DaemonSet and StatefulSet controllers for update and rollback, this object is beta. However, it may be subject to name and representation changes in future releases, and clients should not depend on its stability. It is primarily for internal use by controllers.
Same definition as oneOf_i40

Type: enum (of string)
Kind is a string value representing the REST resource this object represents. Servers may infer this from the endpoint the client submits requests to. Cannot be updated. In CamelCase. More info: https://git.k8s.io/community/contributors/devel/api-conventions.md#types-kinds

Must be one of:

  • "ControllerRevisionList"

Type: object
More info: https://git.k8s.io/community/contributors/devel/api-conventions.md#metadataSame definition as metadata
Type: object
DEPRECATED - This group version of Deployment is deprecated by apps/v1beta2/Deployment. See the release notes for more information. Deployment enables declarative updates for Pods and ReplicaSets.

Type: string
APIVersion defines the versioned schema of this representation of an object. Servers should convert recognized schemas to the latest internal value, and may reject unrecognized values. More info: https://git.k8s.io/community/contributors/devel/api-conventions.md#resources

Type: enum (of string)
Kind is a string value representing the REST resource this object represents. Servers may infer this from the endpoint the client submits requests to. Cannot be updated. In CamelCase. More info: https://git.k8s.io/community/contributors/devel/api-conventions.md#types-kinds

Must be one of:

  • "Deployment"

Type: object
Standard object metadata.Same definition as metadata

Type: object
Specification of the desired behavior of the Deployment.

Type: integerFormat: int32
Minimum number of seconds for which a newly created pod should be ready without any of its container crashing, for it to be considered available. Defaults to 0 (pod will be considered available as soon as it is ready)

Type: boolean
Indicates that the deployment is paused.

Type: integerFormat: int32
The maximum time in seconds for a deployment to make progress before it is considered to be failed. The deployment controller will continue to process failed deployments and a condition with a ProgressDeadlineExceeded reason will be surfaced in the deployment status. Note that progress will not be estimated during the time a deployment is paused. Defaults to 600s.

Type: integerFormat: int32
Number of desired pods. This is a pointer to distinguish between explicit zero and not specified. Defaults to 1.

Type: integerFormat: int32
The number of old ReplicaSets to retain to allow rollback. This is a pointer to distinguish between explicit zero and not specified. Defaults to 2.

Type: object
DEPRECATED. The config this deployment is rolling back to. Will be cleared after rollback is done.

Type: integerFormat: int64
The revision to rollback to. If set to 0, rollback to the last revision.

Type: object
Label selector for pods. Existing ReplicaSets whose pods are selected by this will be the ones affected by this deployment.Same definition as namespaceSelector

Type: object
The deployment strategy to use to replace existing pods with new ones.

Type: object
Rolling update config params. Present only if DeploymentStrategyType = RollingUpdate.

Type: object
The maximum number of pods that can be scheduled above the desired number of pods. Value can be an absolute number (ex: 5) or a percentage of desired pods (ex: 10%). This can not be 0 if MaxUnavailable is 0. Absolute number is calculated from percentage by rounding up. Defaults to 25%. Example: when this is set to 30%, the new ReplicaSet can be scaled up immediately when the rolling update starts, such that the total number of old and new pods do not exceed 130% of desired pods. Once old pods have been killed, new ReplicaSet can be scaled up further, ensuring that total number of pods running at any time during the update is atmost 130% of desired pods.
Same definition as port

Type: object
The maximum number of pods that can be unavailable during the update. Value can be an absolute number (ex: 5) or a percentage of desired pods (ex: 10%). Absolute number is calculated from percentage by rounding down. This can not be 0 if MaxSurge is 0. Defaults to 25%. Example: when this is set to 30%, the old ReplicaSet can be scaled down to 70% of desired pods immediately when the rolling update starts. Once new pods are ready, old ReplicaSet can be scaled down further, followed by scaling up the new ReplicaSet, ensuring that the total number of pods available at all times during the update is at least 70% of desired pods.
Same definition as port

Type: string
Type of deployment. Can be "Recreate" or "RollingUpdate". Default is RollingUpdate.

Type: object
Template describes the pods that will be created.Same definition as template

Type: object
Most recently observed status of the Deployment.

Type: integerFormat: int32
Total number of available pods (ready for at least minReadySeconds) targeted by this deployment.

Type: integerFormat: int32
Count of hash collisions for the Deployment. The Deployment controller uses this field as a collision avoidance mechanism when it needs to create the name for the newest ReplicaSet.

Type: array
Represents the latest available observations of a deployment's current state. No Additional Items

Each item of this array must be:

Type: object
DeploymentCondition describes the state of a deployment at a certain point.

Type: string
Last time the condition transitioned from one status to another.Same definition as creationTimestamp

Type: string
The last time this condition was updated.Same definition as creationTimestamp

Type: string
A human readable message indicating details about the transition.

Type: string
The reason for the condition's last transition.

Type: string
Status of the condition, one of True, False, Unknown.

Type: string
Type of deployment condition.

Type: integerFormat: int64
The generation observed by the deployment controller.

Type: integerFormat: int32
Total number of ready pods targeted by this deployment.

Type: integerFormat: int32
Total number of non-terminated pods targeted by this deployment (their labels match the selector).

Type: integerFormat: int32
Total number of unavailable pods targeted by this deployment. This is the total number of pods that are still required for the deployment to have 100% available capacity. They may either be pods that are running but not yet available or pods that still have not been created.

Type: integerFormat: int32
Total number of non-terminated pods targeted by this deployment that have the desired template spec.
Type: object
DeploymentCondition describes the state of a deployment at a certain point.Same definition as oneOf_i42_status_conditions_items
Type: object
DeploymentList is a list of Deployments.

Type: string
APIVersion defines the versioned schema of this representation of an object. Servers should convert recognized schemas to the latest internal value, and may reject unrecognized values. More info: https://git.k8s.io/community/contributors/devel/api-conventions.md#resources

Type: array
Items is the list of Deployments. No Additional Items

Each item of this array must be:

Type: object
DEPRECATED - This group version of Deployment is deprecated by apps/v1beta2/Deployment. See the release notes for more information. Deployment enables declarative updates for Pods and ReplicaSets.Same definition as oneOf_i42

Type: enum (of string)
Kind is a string value representing the REST resource this object represents. Servers may infer this from the endpoint the client submits requests to. Cannot be updated. In CamelCase. More info: https://git.k8s.io/community/contributors/devel/api-conventions.md#types-kinds

Must be one of:

  • "DeploymentList"

Type: object
Standard list metadata.Same definition as metadata
Type: object
DEPRECATED. DeploymentRollback stores the information required to rollback a deployment.

Type: string
APIVersion defines the versioned schema of this representation of an object. Servers should convert recognized schemas to the latest internal value, and may reject unrecognized values. More info: https://git.k8s.io/community/contributors/devel/api-conventions.md#resources

Type: enum (of string)
Kind is a string value representing the REST resource this object represents. Servers may infer this from the endpoint the client submits requests to. Cannot be updated. In CamelCase. More info: https://git.k8s.io/community/contributors/devel/api-conventions.md#types-kinds

Must be one of:

  • "DeploymentRollback"

Type: string
Required: This must match the Name of a deployment.

Type: object
The config of this deployment rollback.Same definition as rollbackTo

Type: object
The annotations to be updated to a deployment

Each additional property must conform to the following schema

Type: string
Type: object
DeploymentSpec is the specification of the desired behavior of the Deployment.Same definition as spec
Type: object
DeploymentStatus is the most recently observed status of the Deployment.Same definition as status
Type: object
DeploymentStrategy describes how to replace existing pods with new ones.Same definition as strategy
Type: object
Spec to control the desired behavior of rolling update.Same definition as rollingUpdate
Type: object
RollingUpdateStatefulSetStrategy is used to communicate parameter for RollingUpdateStatefulSetStrategyType.

Type: integerFormat: int32
Partition indicates the ordinal at which the StatefulSet should be partitioned.
Type: object
Scale represents a scaling request for a resource.

Type: string
APIVersion defines the versioned schema of this representation of an object. Servers should convert recognized schemas to the latest internal value, and may reject unrecognized values. More info: https://git.k8s.io/community/contributors/devel/api-conventions.md#resources

Type: enum (of string)
Kind is a string value representing the REST resource this object represents. Servers may infer this from the endpoint the client submits requests to. Cannot be updated. In CamelCase. More info: https://git.k8s.io/community/contributors/devel/api-conventions.md#types-kinds

Must be one of:

  • "Scale"

Type: object
Standard object metadata; More info: https://git.k8s.io/community/contributors/devel/api-conventions.md#metadata.Same definition as metadata

Type: object
defines the behavior of the scale. More info: https://git.k8s.io/community/contributors/devel/api-conventions.md#spec-and-status.

Type: integerFormat: int32
desired number of instances for the scaled object.

Type: object
current status of the scale. More info: https://git.k8s.io/community/contributors/devel/api-conventions.md#spec-and-status. Read-only.

Type: integerFormat: int32
actual number of observed instances of the scaled object.

Type: object
label query over pods that should match the replicas count. More info: http://kubernetes.io/docs/user-guide/labels#label-selectors

Each additional property must conform to the following schema

Type: string

Type: string
label selector for pods that should match the replicas count. This is a serializated version of both map-based and more expressive set-based selectors. This is done to avoid introspection in the clients. The string will be in the same format as the query-param syntax. If the target type only supports map-based selectors, both this field and map-based selector field are populated. More info: https://kubernetes.io/docs/concepts/overview/working-with-objects/labels/#label-selectors
Type: object
ScaleSpec describes the attributes of a scale subresourceSame definition as spec
Type: object
ScaleStatus represents the current status of a scale subresource.Same definition as status
Type: object
DEPRECATED - This group version of StatefulSet is deprecated by apps/v1beta2/StatefulSet. See the release notes for more information. StatefulSet represents a set of pods with consistent identities. Identities are defined as: - Network: A single stable DNS and hostname. - Storage: As many VolumeClaims as requested. The StatefulSet guarantees that a given network identity will always map to the same storage identity.

Type: string
APIVersion defines the versioned schema of this representation of an object. Servers should convert recognized schemas to the latest internal value, and may reject unrecognized values. More info: https://git.k8s.io/community/contributors/devel/api-conventions.md#resources

Type: enum (of string)
Kind is a string value representing the REST resource this object represents. Servers may infer this from the endpoint the client submits requests to. Cannot be updated. In CamelCase. More info: https://git.k8s.io/community/contributors/devel/api-conventions.md#types-kinds

Must be one of:

  • "StatefulSet"

Type: object
ObjectMeta is metadata that all persisted resources must have, which includes all objects users must create.Same definition as metadata

Type: object
Spec defines the desired identities of pods in this set.

Type: string
podManagementPolicy controls how pods are created during initial scale up, when replacing pods on nodes, or when scaling down. The default policy is `OrderedReady`, where pods are created in increasing order (pod-0, then pod-1, etc) and the controller will wait until each pod is ready before continuing. When scaling down, the pods are removed in the opposite order. The alternative policy is `Parallel` which will create pods in parallel to match the desired scale without waiting, and on scale down will delete all pods at once.

Type: integerFormat: int32
replicas is the desired number of replicas of the given Template. These are replicas in the sense that they are instantiations of the same Template, but individual replicas also have a consistent identity. If unspecified, defaults to 1.

Type: integerFormat: int32
revisionHistoryLimit is the maximum number of revisions that will be maintained in the StatefulSet's revision history. The revision history consists of all revisions not represented by a currently applied StatefulSetSpec version. The default value is 10.

Type: object
selector is a label query over pods that should match the replica count. If empty, defaulted to labels on the pod template. More info: https://kubernetes.io/docs/concepts/overview/working-with-objects/labels/#label-selectorsSame definition as namespaceSelector

Type: string
serviceName is the name of the service that governs this StatefulSet. This service must exist before the StatefulSet, and is responsible for the network identity of the set. Pods get DNS/hostnames that follow the pattern: pod-specific-string.serviceName.default.svc.cluster.local where "pod-specific-string" is managed by the StatefulSet controller.

Type: object
template is the object that describes the pod that will be created if insufficient replicas are detected. Each pod stamped out by the StatefulSet will fulfill this Template, but have a unique identity from the rest of the StatefulSet.Same definition as template

Type: object
updateStrategy indicates the StatefulSetUpdateStrategy that will be employed to update Pods in the StatefulSet when a revision is made to Template.

Type: object
RollingUpdate is used to communicate parameters when Type is RollingUpdateStatefulSetStrategyType.Same definition as oneOf_i51

Type: string
Type indicates the type of the StatefulSetUpdateStrategy.

Type: array
volumeClaimTemplates is a list of claims that pods are allowed to reference. The StatefulSet controller is responsible for mapping network identities to claims in a way that maintains the identity of a pod. Every claim in this list must have at least one matching (by name) volumeMount in one container in the template. A claim in this list takes precedence over any volumes in the template, with the same name. No Additional Items

Each item of this array must be:

Type: object
PersistentVolumeClaim is a user's request for and claim to a persistent volumeSame definition as oneOf_i34_spec_volumeClaimTemplates_items

Type: object
Status is the current status of Pods in this StatefulSet. This data may be out of date by some window of time.

Type: integerFormat: int32
collisionCount is the count of hash collisions for the StatefulSet. The StatefulSet controller uses this field as a collision avoidance mechanism when it needs to create the name for the newest ControllerRevision.

Type: array
Represents the latest available observations of a statefulset's current state. No Additional Items

Each item of this array must be:

Type: object
StatefulSetCondition describes the state of a statefulset at a certain point.

Type: string
Last time the condition transitioned from one status to another.Same definition as creationTimestamp

Type: string
A human readable message indicating details about the transition.

Type: string
The reason for the condition's last transition.

Type: string
Status of the condition, one of True, False, Unknown.

Type: string
Type of statefulset condition.

Type: integerFormat: int32
currentReplicas is the number of Pods created by the StatefulSet controller from the StatefulSet version indicated by currentRevision.

Type: string
currentRevision, if not empty, indicates the version of the StatefulSet used to generate Pods in the sequence [0,currentReplicas).

Type: integerFormat: int64
observedGeneration is the most recent generation observed for this StatefulSet. It corresponds to the StatefulSet's generation, which is updated on mutation by the API Server.

Type: integerFormat: int32
readyReplicas is the number of Pods created by the StatefulSet controller that have a Ready Condition.

Type: integerFormat: int32
replicas is the number of Pods created by the StatefulSet controller.

Type: string
updateRevision, if not empty, indicates the version of the StatefulSet used to generate Pods in the sequence [replicas-updatedReplicas,replicas)

Type: integerFormat: int32
updatedReplicas is the number of Pods created by the StatefulSet controller from the StatefulSet version indicated by updateRevision.
Type: object
StatefulSetCondition describes the state of a statefulset at a certain point.Same definition as oneOf_i55_status_conditions_items
Type: object
StatefulSetList is a collection of StatefulSets.

Type: string
APIVersion defines the versioned schema of this representation of an object. Servers should convert recognized schemas to the latest internal value, and may reject unrecognized values. More info: https://git.k8s.io/community/contributors/devel/api-conventions.md#resources

Type: array
No Additional Items

Each item of this array must be:

Type: object
DEPRECATED - This group version of StatefulSet is deprecated by apps/v1beta2/StatefulSet. See the release notes for more information. StatefulSet represents a set of pods with consistent identities. Identities are defined as: - Network: A single stable DNS and hostname. - Storage: As many VolumeClaims as requested. The StatefulSet guarantees that a given network identity will always map to the same storage identity.
Same definition as oneOf_i55

Type: enum (of string)
Kind is a string value representing the REST resource this object represents. Servers may infer this from the endpoint the client submits requests to. Cannot be updated. In CamelCase. More info: https://git.k8s.io/community/contributors/devel/api-conventions.md#types-kinds

Must be one of:

  • "StatefulSetList"

Type: object
ListMeta describes metadata that synthetic resources must have, including lists and various status objects. A resource may have only one of {ObjectMeta, ListMeta}.Same definition as metadata
Type: object
A StatefulSetSpec is the specification of a StatefulSet.Same definition as spec
Type: object
StatefulSetStatus represents the current state of a StatefulSet.Same definition as status
Type: object
StatefulSetUpdateStrategy indicates the strategy that the StatefulSet controller will use to perform updates. It includes any additional parameters necessary to perform the update for the indicated strategy.Same definition as updateStrategy
Type: object
DEPRECATED - This group version of ControllerRevision is deprecated by apps/v1/ControllerRevision. See the release notes for more information. ControllerRevision implements an immutable snapshot of state data. Clients are responsible for serializing and deserializing the objects that contain their internal state. Once a ControllerRevision has been successfully created, it can not be updated. The API Server will fail validation of all requests that attempt to mutate the Data field. ControllerRevisions may, however, be deleted. Note that, due to its use by both the DaemonSet and StatefulSet controllers for update and rollback, this object is beta. However, it may be subject to name and representation changes in future releases, and clients should not depend on its stability. It is primarily for internal use by controllers.

Type: string
APIVersion defines the versioned schema of this representation of an object. Servers should convert recognized schemas to the latest internal value, and may reject unrecognized values. More info: https://git.k8s.io/community/contributors/devel/api-conventions.md#resources

Type: object
Data is the serialized representation of the state.Same definition as data

Type: enum (of string)
Kind is a string value representing the REST resource this object represents. Servers may infer this from the endpoint the client submits requests to. Cannot be updated. In CamelCase. More info: https://git.k8s.io/community/contributors/devel/api-conventions.md#types-kinds

Must be one of:

  • "ControllerRevision"

Type: object
Standard object's metadata. More info: https://git.k8s.io/community/contributors/devel/api-conventions.md#metadataSame definition as metadata

Type: integerFormat: int64
Revision indicates the revision of the state represented by Data.
Type: object
ControllerRevisionList is a resource containing a list of ControllerRevision objects.

Type: string
APIVersion defines the versioned schema of this representation of an object. Servers should convert recognized schemas to the latest internal value, and may reject unrecognized values. More info: https://git.k8s.io/community/contributors/devel/api-conventions.md#resources

Type: array
Items is the list of ControllerRevisions No Additional Items

Each item of this array must be:

Type: object
DEPRECATED - This group version of ControllerRevision is deprecated by apps/v1/ControllerRevision. See the release notes for more information. ControllerRevision implements an immutable snapshot of state data. Clients are responsible for serializing and deserializing the objects that contain their internal state. Once a ControllerRevision has been successfully created, it can not be updated. The API Server will fail validation of all requests that attempt to mutate the Data field. ControllerRevisions may, however, be deleted. Note that, due to its use by both the DaemonSet and StatefulSet controllers for update and rollback, this object is beta. However, it may be subject to name and representation changes in future releases, and clients should not depend on its stability. It is primarily for internal use by controllers.
Same definition as oneOf_i61

Type: enum (of string)
Kind is a string value representing the REST resource this object represents. Servers may infer this from the endpoint the client submits requests to. Cannot be updated. In CamelCase. More info: https://git.k8s.io/community/contributors/devel/api-conventions.md#types-kinds

Must be one of:

  • "ControllerRevisionList"

Type: object
More info: https://git.k8s.io/community/contributors/devel/api-conventions.md#metadataSame definition as metadata
Type: object
DEPRECATED - This group version of DaemonSet is deprecated by apps/v1/DaemonSet. See the release notes for more information. DaemonSet represents the configuration of a daemon set.

Type: string
APIVersion defines the versioned schema of this representation of an object. Servers should convert recognized schemas to the latest internal value, and may reject unrecognized values. More info: https://git.k8s.io/community/contributors/devel/api-conventions.md#resources

Type: enum (of string)
Kind is a string value representing the REST resource this object represents. Servers may infer this from the endpoint the client submits requests to. Cannot be updated. In CamelCase. More info: https://git.k8s.io/community/contributors/devel/api-conventions.md#types-kinds

Must be one of:

  • "DaemonSet"

Type: object
Standard object's metadata. More info: https://git.k8s.io/community/contributors/devel/api-conventions.md#metadataSame definition as metadata

Type: object
The desired behavior of this daemon set. More info: https://git.k8s.io/community/contributors/devel/api-conventions.md#spec-and-status

Type: integerFormat: int32
The minimum number of seconds for which a newly created DaemonSet pod should be ready without any of its container crashing, for it to be considered available. Defaults to 0 (pod will be considered available as soon as it is ready).

Type: integerFormat: int32
The number of old history to retain to allow rollback. This is a pointer to distinguish between explicit zero and not specified. Defaults to 10.

Type: object
A label query over pods that are managed by the daemon set. Must match in order to be controlled. It must match the pod template's labels. More info: https://kubernetes.io/docs/concepts/overview/working-with-objects/labels/#label-selectorsSame definition as namespaceSelector

Type: object
An object that describes the pod that will be created. The DaemonSet will create exactly one copy of this pod on every node that matches the template's node selector (or on every node if no node selector is specified). More info: https://kubernetes.io/docs/concepts/workloads/controllers/replicationcontroller#pod-templateSame definition as template

Type: object
An update strategy to replace existing DaemonSet pods with new pods.

Type: object
Rolling update config params. Present only if type = "RollingUpdate".

Type: object
The maximum number of DaemonSet pods that can be unavailable during the update. Value can be an absolute number (ex: 5) or a percentage of total number of DaemonSet pods at the start of the update (ex: 10%). Absolute number is calculated from percentage by rounding up. This cannot be 0. Default value is 1. Example: when this is set to 30%, at most 30% of the total number of nodes that should be running the daemon pod (i.e. status.desiredNumberScheduled) can have their pods stopped for an update at any given time. The update starts by stopping at most 30% of those DaemonSet pods and then brings up new DaemonSet pods in their place. Once the new pods are available, it then proceeds onto other DaemonSet pods, thus ensuring that at least 70% of original number of DaemonSet pods are available at all times during the update.
Same definition as port

Type: string
Type of daemon set update. Can be "RollingUpdate" or "OnDelete". Default is RollingUpdate.

Type: object
The current status of this daemon set. This data may be out of date by some window of time. Populated by the system. Read-only. More info: https://git.k8s.io/community/contributors/devel/api-conventions.md#spec-and-status

Type: integerFormat: int32
Count of hash collisions for the DaemonSet. The DaemonSet controller uses this field as a collision avoidance mechanism when it needs to create the name for the newest ControllerRevision.

Type: array
Represents the latest available observations of a DaemonSet's current state. No Additional Items

Each item of this array must be:

Type: object
DaemonSetCondition describes the state of a DaemonSet at a certain point.

Type: string
Last time the condition transitioned from one status to another.Same definition as creationTimestamp

Type: string
A human readable message indicating details about the transition.

Type: string
The reason for the condition's last transition.

Type: string
Status of the condition, one of True, False, Unknown.

Type: string
Type of DaemonSet condition.

Type: integerFormat: int32
The number of nodes that are running at least 1 daemon pod and are supposed to run the daemon pod. More info: https://kubernetes.io/docs/concepts/workloads/controllers/daemonset/

Type: integerFormat: int32
The total number of nodes that should be running the daemon pod (including nodes correctly running the daemon pod). More info: https://kubernetes.io/docs/concepts/workloads/controllers/daemonset/

Type: integerFormat: int32
The number of nodes that should be running the daemon pod and have one or more of the daemon pod running and available (ready for at least spec.minReadySeconds)

Type: integerFormat: int32
The number of nodes that are running the daemon pod, but are not supposed to run the daemon pod. More info: https://kubernetes.io/docs/concepts/workloads/controllers/daemonset/

Type: integerFormat: int32
The number of nodes that should be running the daemon pod and have one or more of the daemon pod running and ready.

Type: integerFormat: int32
The number of nodes that should be running the daemon pod and have none of the daemon pod running and available (ready for at least spec.minReadySeconds)

Type: integerFormat: int64
The most recent generation observed by the daemon set controller.

Type: integerFormat: int32
The total number of nodes that are running updated daemon pod
Type: object
DaemonSetCondition describes the state of a DaemonSet at a certain point.Same definition as oneOf_i63_status_conditions_items
Type: object
DaemonSetList is a collection of daemon sets.

Type: string
APIVersion defines the versioned schema of this representation of an object. Servers should convert recognized schemas to the latest internal value, and may reject unrecognized values. More info: https://git.k8s.io/community/contributors/devel/api-conventions.md#resources

Type: array
A list of daemon sets. No Additional Items

Each item of this array must be:

Type: object
DEPRECATED - This group version of DaemonSet is deprecated by apps/v1/DaemonSet. See the release notes for more information. DaemonSet represents the configuration of a daemon set.Same definition as oneOf_i63

Type: enum (of string)
Kind is a string value representing the REST resource this object represents. Servers may infer this from the endpoint the client submits requests to. Cannot be updated. In CamelCase. More info: https://git.k8s.io/community/contributors/devel/api-conventions.md#types-kinds

Must be one of:

  • "DaemonSetList"

Type: object
Standard list metadata. More info: https://git.k8s.io/community/contributors/devel/api-conventions.md#metadataSame definition as metadata
Type: object
DaemonSetSpec is the specification of a daemon set.Same definition as spec
Type: object
DaemonSetStatus represents the current status of a daemon set.Same definition as status
Type: object
DaemonSetUpdateStrategy is a struct used to control the update strategy for a DaemonSet.Same definition as updateStrategy
Type: object
DEPRECATED - This group version of Deployment is deprecated by apps/v1/Deployment. See the release notes for more information. Deployment enables declarative updates for Pods and ReplicaSets.

Type: string
APIVersion defines the versioned schema of this representation of an object. Servers should convert recognized schemas to the latest internal value, and may reject unrecognized values. More info: https://git.k8s.io/community/contributors/devel/api-conventions.md#resources

Type: enum (of string)
Kind is a string value representing the REST resource this object represents. Servers may infer this from the endpoint the client submits requests to. Cannot be updated. In CamelCase. More info: https://git.k8s.io/community/contributors/devel/api-conventions.md#types-kinds

Must be one of:

  • "Deployment"

Type: object
Standard object metadata.Same definition as metadata

Type: object
Specification of the desired behavior of the Deployment.

Type: integerFormat: int32
Minimum number of seconds for which a newly created pod should be ready without any of its container crashing, for it to be considered available. Defaults to 0 (pod will be considered available as soon as it is ready)

Type: boolean
Indicates that the deployment is paused.

Type: integerFormat: int32
The maximum time in seconds for a deployment to make progress before it is considered to be failed. The deployment controller will continue to process failed deployments and a condition with a ProgressDeadlineExceeded reason will be surfaced in the deployment status. Note that progress will not be estimated during the time a deployment is paused. Defaults to 600s.

Type: integerFormat: int32
Number of desired pods. This is a pointer to distinguish between explicit zero and not specified. Defaults to 1.

Type: integerFormat: int32
The number of old ReplicaSets to retain to allow rollback. This is a pointer to distinguish between explicit zero and not specified. Defaults to 10.

Type: object
Label selector for pods. Existing ReplicaSets whose pods are selected by this will be the ones affected by this deployment. It must match the pod template's labels.Same definition as namespaceSelector

Type: object
The deployment strategy to use to replace existing pods with new ones.

Type: object
Rolling update config params. Present only if DeploymentStrategyType = RollingUpdate.

Type: object
The maximum number of pods that can be scheduled above the desired number of pods. Value can be an absolute number (ex: 5) or a percentage of desired pods (ex: 10%). This can not be 0 if MaxUnavailable is 0. Absolute number is calculated from percentage by rounding up. Defaults to 25%. Example: when this is set to 30%, the new ReplicaSet can be scaled up immediately when the rolling update starts, such that the total number of old and new pods do not exceed 130% of desired pods. Once old pods have been killed, new ReplicaSet can be scaled up further, ensuring that total number of pods running at any time during the update is atmost 130% of desired pods.
Same definition as port

Type: object
The maximum number of pods that can be unavailable during the update. Value can be an absolute number (ex: 5) or a percentage of desired pods (ex: 10%). Absolute number is calculated from percentage by rounding down. This can not be 0 if MaxSurge is 0. Defaults to 25%. Example: when this is set to 30%, the old ReplicaSet can be scaled down to 70% of desired pods immediately when the rolling update starts. Once new pods are ready, old ReplicaSet can be scaled down further, followed by scaling up the new ReplicaSet, ensuring that the total number of pods available at all times during the update is at least 70% of desired pods.
Same definition as port

Type: string
Type of deployment. Can be "Recreate" or "RollingUpdate". Default is RollingUpdate.

Type: object
Template describes the pods that will be created.Same definition as template

Type: object
Most recently observed status of the Deployment.

Type: integerFormat: int32
Total number of available pods (ready for at least minReadySeconds) targeted by this deployment.

Type: integerFormat: int32
Count of hash collisions for the Deployment. The Deployment controller uses this field as a collision avoidance mechanism when it needs to create the name for the newest ReplicaSet.

Type: array
Represents the latest available observations of a deployment's current state. No Additional Items

Each item of this array must be:

Type: object
DeploymentCondition describes the state of a deployment at a certain point.

Type: string
Last time the condition transitioned from one status to another.Same definition as creationTimestamp

Type: string
The last time this condition was updated.Same definition as creationTimestamp

Type: string
A human readable message indicating details about the transition.

Type: string
The reason for the condition's last transition.

Type: string
Status of the condition, one of True, False, Unknown.

Type: string
Type of deployment condition.

Type: integerFormat: int64
The generation observed by the deployment controller.

Type: integerFormat: int32
Total number of ready pods targeted by this deployment.

Type: integerFormat: int32
Total number of non-terminated pods targeted by this deployment (their labels match the selector).

Type: integerFormat: int32
Total number of unavailable pods targeted by this deployment. This is the total number of pods that are still required for the deployment to have 100% available capacity. They may either be pods that are running but not yet available or pods that still have not been created.

Type: integerFormat: int32
Total number of non-terminated pods targeted by this deployment that have the desired template spec.
Type: object
DeploymentCondition describes the state of a deployment at a certain point.Same definition as oneOf_i69_status_conditions_items
Type: object
DeploymentList is a list of Deployments.

Type: string
APIVersion defines the versioned schema of this representation of an object. Servers should convert recognized schemas to the latest internal value, and may reject unrecognized values. More info: https://git.k8s.io/community/contributors/devel/api-conventions.md#resources

Type: array
Items is the list of Deployments. No Additional Items

Each item of this array must be:

Type: object
DEPRECATED - This group version of Deployment is deprecated by apps/v1/Deployment. See the release notes for more information. Deployment enables declarative updates for Pods and ReplicaSets.Same definition as oneOf_i69

Type: enum (of string)
Kind is a string value representing the REST resource this object represents. Servers may infer this from the endpoint the client submits requests to. Cannot be updated. In CamelCase. More info: https://git.k8s.io/community/contributors/devel/api-conventions.md#types-kinds

Must be one of:

  • "DeploymentList"

Type: object
Standard list metadata.Same definition as metadata
Type: object
DeploymentSpec is the specification of the desired behavior of the Deployment.Same definition as spec
Type: object
DeploymentStatus is the most recently observed status of the Deployment.Same definition as status
Type: object
DeploymentStrategy describes how to replace existing pods with new ones.Same definition as strategy
Type: object
DEPRECATED - This group version of ReplicaSet is deprecated by apps/v1/ReplicaSet. See the release notes for more information. ReplicaSet ensures that a specified number of pod replicas are running at any given time.

Type: string
APIVersion defines the versioned schema of this representation of an object. Servers should convert recognized schemas to the latest internal value, and may reject unrecognized values. More info: https://git.k8s.io/community/contributors/devel/api-conventions.md#resources

Type: enum (of string)
Kind is a string value representing the REST resource this object represents. Servers may infer this from the endpoint the client submits requests to. Cannot be updated. In CamelCase. More info: https://git.k8s.io/community/contributors/devel/api-conventions.md#types-kinds

Must be one of:

  • "ReplicaSet"

Type: object
If the Labels of a ReplicaSet are empty, they are defaulted to be the same as the Pod(s) that the ReplicaSet manages. Standard object's metadata. More info: https://git.k8s.io/community/contributors/devel/api-conventions.md#metadataSame definition as metadata

Type: object
Spec defines the specification of the desired behavior of the ReplicaSet. More info: https://git.k8s.io/community/contributors/devel/api-conventions.md#spec-and-status

Type: integerFormat: int32
Minimum number of seconds for which a newly created pod should be ready without any of its container crashing, for it to be considered available. Defaults to 0 (pod will be considered available as soon as it is ready)

Type: integerFormat: int32
Replicas is the number of desired replicas. This is a pointer to distinguish between explicit zero and unspecified. Defaults to 1. More info: https://kubernetes.io/docs/concepts/workloads/controllers/replicationcontroller/#what-is-a-replicationcontroller

Type: object
Selector is a label query over pods that should match the replica count. Label keys and values that must match in order to be controlled by this replica set. It must match the pod template's labels. More info: https://kubernetes.io/docs/concepts/overview/working-with-objects/labels/#label-selectorsSame definition as namespaceSelector

Type: object
Template is the object that describes the pod that will be created if insufficient replicas are detected. More info: https://kubernetes.io/docs/concepts/workloads/controllers/replicationcontroller#pod-templateSame definition as template

Type: object
Status is the most recently observed status of the ReplicaSet. This data may be out of date by some window of time. Populated by the system. Read-only. More info: https://git.k8s.io/community/contributors/devel/api-conventions.md#spec-and-status

Type: integerFormat: int32
The number of available replicas (ready for at least minReadySeconds) for this replica set.

Type: array
Represents the latest available observations of a replica set's current state. No Additional Items

Each item of this array must be:

Type: object
ReplicaSetCondition describes the state of a replica set at a certain point.

Type: string
The last time the condition transitioned from one status to another.Same definition as creationTimestamp

Type: string
A human readable message indicating details about the transition.

Type: string
The reason for the condition's last transition.

Type: string
Status of the condition, one of True, False, Unknown.

Type: string
Type of replica set condition.

Type: integerFormat: int32
The number of pods that have labels matching the labels of the pod template of the replicaset.

Type: integerFormat: int64
ObservedGeneration reflects the generation of the most recently observed ReplicaSet.

Type: integerFormat: int32
The number of ready replicas for this replica set.

Type: integerFormat: int32
Replicas is the most recently oberved number of replicas. More info: https://kubernetes.io/docs/concepts/workloads/controllers/replicationcontroller/#what-is-a-replicationcontroller
Type: object
ReplicaSetCondition describes the state of a replica set at a certain point.Same definition as oneOf_i75_status_conditions_items
Type: object
ReplicaSetList is a collection of ReplicaSets.

Type: string
APIVersion defines the versioned schema of this representation of an object. Servers should convert recognized schemas to the latest internal value, and may reject unrecognized values. More info: https://git.k8s.io/community/contributors/devel/api-conventions.md#resources

Type: array
List of ReplicaSets. More info: https://kubernetes.io/docs/concepts/workloads/controllers/replicationcontroller No Additional Items

Each item of this array must be:

Type: object
DEPRECATED - This group version of ReplicaSet is deprecated by apps/v1/ReplicaSet. See the release notes for more information. ReplicaSet ensures that a specified number of pod replicas are running at any given time.Same definition as oneOf_i75

Type: enum (of string)
Kind is a string value representing the REST resource this object represents. Servers may infer this from the endpoint the client submits requests to. Cannot be updated. In CamelCase. More info: https://git.k8s.io/community/contributors/devel/api-conventions.md#types-kinds

Must be one of:

  • "ReplicaSetList"

Type: object
Standard list metadata. More info: https://git.k8s.io/community/contributors/devel/api-conventions.md#types-kindsSame definition as metadata
Type: object
ReplicaSetSpec is the specification of a ReplicaSet.Same definition as spec
Type: object
ReplicaSetStatus represents the current status of a ReplicaSet.Same definition as status
Type: object
Spec to control the desired behavior of daemon set rolling update.Same definition as rollingUpdate
Type: object
Spec to control the desired behavior of rolling update.Same definition as rollingUpdate
Type: object
RollingUpdateStatefulSetStrategy is used to communicate parameter for RollingUpdateStatefulSetStrategyType.

Type: integerFormat: int32
Partition indicates the ordinal at which the StatefulSet should be partitioned. Default value is 0.
Type: object
Scale represents a scaling request for a resource.

Type: string
APIVersion defines the versioned schema of this representation of an object. Servers should convert recognized schemas to the latest internal value, and may reject unrecognized values. More info: https://git.k8s.io/community/contributors/devel/api-conventions.md#resources

Type: enum (of string)
Kind is a string value representing the REST resource this object represents. Servers may infer this from the endpoint the client submits requests to. Cannot be updated. In CamelCase. More info: https://git.k8s.io/community/contributors/devel/api-conventions.md#types-kinds

Must be one of:

  • "Scale"

Type: object
Standard object metadata; More info: https://git.k8s.io/community/contributors/devel/api-conventions.md#metadata.Same definition as metadata

Type: object
defines the behavior of the scale. More info: https://git.k8s.io/community/contributors/devel/api-conventions.md#spec-and-status.

Type: integerFormat: int32
desired number of instances for the scaled object.

Type: object
current status of the scale. More info: https://git.k8s.io/community/contributors/devel/api-conventions.md#spec-and-status. Read-only.

Type: integerFormat: int32
actual number of observed instances of the scaled object.

Type: object
label query over pods that should match the replicas count. More info: http://kubernetes.io/docs/user-guide/labels#label-selectors

Each additional property must conform to the following schema

Type: string

Type: string
label selector for pods that should match the replicas count. This is a serializated version of both map-based and more expressive set-based selectors. This is done to avoid introspection in the clients. The string will be in the same format as the query-param syntax. If the target type only supports map-based selectors, both this field and map-based selector field are populated. More info: https://kubernetes.io/docs/concepts/overview/working-with-objects/labels/#label-selectors
Type: object
ScaleSpec describes the attributes of a scale subresourceSame definition as spec
Type: object
ScaleStatus represents the current status of a scale subresource.Same definition as status
Type: object
DEPRECATED - This group version of StatefulSet is deprecated by apps/v1/StatefulSet. See the release notes for more information. StatefulSet represents a set of pods with consistent identities. Identities are defined as: - Network: A single stable DNS and hostname. - Storage: As many VolumeClaims as requested. The StatefulSet guarantees that a given network identity will always map to the same storage identity.

Type: string
APIVersion defines the versioned schema of this representation of an object. Servers should convert recognized schemas to the latest internal value, and may reject unrecognized values. More info: https://git.k8s.io/community/contributors/devel/api-conventions.md#resources

Type: enum (of string)
Kind is a string value representing the REST resource this object represents. Servers may infer this from the endpoint the client submits requests to. Cannot be updated. In CamelCase. More info: https://git.k8s.io/community/contributors/devel/api-conventions.md#types-kinds

Must be one of:

  • "StatefulSet"

Type: object
ObjectMeta is metadata that all persisted resources must have, which includes all objects users must create.Same definition as metadata

Type: object
Spec defines the desired identities of pods in this set.

Type: string
podManagementPolicy controls how pods are created during initial scale up, when replacing pods on nodes, or when scaling down. The default policy is `OrderedReady`, where pods are created in increasing order (pod-0, then pod-1, etc) and the controller will wait until each pod is ready before continuing. When scaling down, the pods are removed in the opposite order. The alternative policy is `Parallel` which will create pods in parallel to match the desired scale without waiting, and on scale down will delete all pods at once.

Type: integerFormat: int32
replicas is the desired number of replicas of the given Template. These are replicas in the sense that they are instantiations of the same Template, but individual replicas also have a consistent identity. If unspecified, defaults to 1.

Type: integerFormat: int32
revisionHistoryLimit is the maximum number of revisions that will be maintained in the StatefulSet's revision history. The revision history consists of all revisions not represented by a currently applied StatefulSetSpec version. The default value is 10.

Type: object
selector is a label query over pods that should match the replica count. It must match the pod template's labels. More info: https://kubernetes.io/docs/concepts/overview/working-with-objects/labels/#label-selectorsSame definition as namespaceSelector

Type: string
serviceName is the name of the service that governs this StatefulSet. This service must exist before the StatefulSet, and is responsible for the network identity of the set. Pods get DNS/hostnames that follow the pattern: pod-specific-string.serviceName.default.svc.cluster.local where "pod-specific-string" is managed by the StatefulSet controller.

Type: object
template is the object that describes the pod that will be created if insufficient replicas are detected. Each pod stamped out by the StatefulSet will fulfill this Template, but have a unique identity from the rest of the StatefulSet.Same definition as template

Type: object
updateStrategy indicates the StatefulSetUpdateStrategy that will be employed to update Pods in the StatefulSet when a revision is made to Template.

Type: object
RollingUpdate is used to communicate parameters when Type is RollingUpdateStatefulSetStrategyType.Same definition as oneOf_i82

Type: string
Type indicates the type of the StatefulSetUpdateStrategy. Default is RollingUpdate.

Type: array
volumeClaimTemplates is a list of claims that pods are allowed to reference. The StatefulSet controller is responsible for mapping network identities to claims in a way that maintains the identity of a pod. Every claim in this list must have at least one matching (by name) volumeMount in one container in the template. A claim in this list takes precedence over any volumes in the template, with the same name. No Additional Items

Each item of this array must be:

Type: object
PersistentVolumeClaim is a user's request for and claim to a persistent volumeSame definition as oneOf_i34_spec_volumeClaimTemplates_items

Type: object
Status is the current status of Pods in this StatefulSet. This data may be out of date by some window of time.

Type: integerFormat: int32
collisionCount is the count of hash collisions for the StatefulSet. The StatefulSet controller uses this field as a collision avoidance mechanism when it needs to create the name for the newest ControllerRevision.

Type: array
Represents the latest available observations of a statefulset's current state. No Additional Items

Each item of this array must be:

Type: object
StatefulSetCondition describes the state of a statefulset at a certain point.

Type: string
Last time the condition transitioned from one status to another.Same definition as creationTimestamp

Type: string
A human readable message indicating details about the transition.

Type: string
The reason for the condition's last transition.

Type: string
Status of the condition, one of True, False, Unknown.

Type: string
Type of statefulset condition.

Type: integerFormat: int32
currentReplicas is the number of Pods created by the StatefulSet controller from the StatefulSet version indicated by currentRevision.

Type: string
currentRevision, if not empty, indicates the version of the StatefulSet used to generate Pods in the sequence [0,currentReplicas).

Type: integerFormat: int64
observedGeneration is the most recent generation observed for this StatefulSet. It corresponds to the StatefulSet's generation, which is updated on mutation by the API Server.

Type: integerFormat: int32
readyReplicas is the number of Pods created by the StatefulSet controller that have a Ready Condition.

Type: integerFormat: int32
replicas is the number of Pods created by the StatefulSet controller.

Type: string
updateRevision, if not empty, indicates the version of the StatefulSet used to generate Pods in the sequence [replicas-updatedReplicas,replicas)

Type: integerFormat: int32
updatedReplicas is the number of Pods created by the StatefulSet controller from the StatefulSet version indicated by updateRevision.
Type: object
StatefulSetCondition describes the state of a statefulset at a certain point.Same definition as oneOf_i86_status_conditions_items
Type: object
StatefulSetList is a collection of StatefulSets.

Type: string
APIVersion defines the versioned schema of this representation of an object. Servers should convert recognized schemas to the latest internal value, and may reject unrecognized values. More info: https://git.k8s.io/community/contributors/devel/api-conventions.md#resources

Type: array
No Additional Items

Each item of this array must be:

Type: object
DEPRECATED - This group version of StatefulSet is deprecated by apps/v1/StatefulSet. See the release notes for more information. StatefulSet represents a set of pods with consistent identities. Identities are defined as: - Network: A single stable DNS and hostname. - Storage: As many VolumeClaims as requested. The StatefulSet guarantees that a given network identity will always map to the same storage identity.
Same definition as oneOf_i86

Type: enum (of string)
Kind is a string value representing the REST resource this object represents. Servers may infer this from the endpoint the client submits requests to. Cannot be updated. In CamelCase. More info: https://git.k8s.io/community/contributors/devel/api-conventions.md#types-kinds

Must be one of:

  • "StatefulSetList"

Type: object
ListMeta describes metadata that synthetic resources must have, including lists and various status objects. A resource may have only one of {ObjectMeta, ListMeta}.Same definition as metadata
Type: object
A StatefulSetSpec is the specification of a StatefulSet.Same definition as spec
Type: object
StatefulSetStatus represents the current state of a StatefulSet.Same definition as status
Type: object
StatefulSetUpdateStrategy indicates the strategy that the StatefulSet controller will use to perform updates. It includes any additional parameters necessary to perform the update for the indicated strategy.Same definition as updateStrategy
Type: object
AuditSink represents a cluster level audit sink

Type: string
APIVersion defines the versioned schema of this representation of an object. Servers should convert recognized schemas to the latest internal value, and may reject unrecognized values. More info: https://git.k8s.io/community/contributors/devel/api-conventions.md#resources

Type: enum (of string)
Kind is a string value representing the REST resource this object represents. Servers may infer this from the endpoint the client submits requests to. Cannot be updated. In CamelCase. More info: https://git.k8s.io/community/contributors/devel/api-conventions.md#types-kinds

Must be one of:

  • "AuditSink"

Type: object
ObjectMeta is metadata that all persisted resources must have, which includes all objects users must create.Same definition as metadata

Type: object
Spec defines the audit configuration spec

Type: object
Policy defines the policy for selecting which events should be sent to the webhook required

Type: string
The Level that all requests are recorded at. available options: None, Metadata, Request, RequestResponse required

Type: array of string
Stages is a list of stages for which events are created. No Additional Items

Each item of this array must be:

Type: object
Webhook to send events required

Type: object
ClientConfig holds the connection parameters for the webhook required

Type: stringFormat: byte
`caBundle` is a PEM encoded CA bundle which will be used to validate the webhook's server certificate. If unspecified, system trust roots on the apiserver are used.

Type: object
`service` is a reference to the service for this webhook. Either `service` or `url` must be specified. If the webhook is running within the cluster, then you should use `service`. Port 443 will be used if it is open, otherwise it is an error.

Type: string
`name` is the name of the service. Required

Type: string
`namespace` is the namespace of the service. Required

Type: string
`path` is an optional URL path which will be sent in any request to this service.

Type: string
`url` gives the location of the webhook, in standard URL form (`scheme://host:port/path`). Exactly one of `url` or `service` must be specified. The `host` should not refer to a service running in the cluster; use the `service` field instead. The host might be resolved via external DNS in some apiservers (e.g., `kube-apiserver` cannot resolve in-cluster DNS as that would be a layering violation). `host` may also be an IP address. Please note that using `localhost` or `127.0.0.1` as a `host` is risky unless you take great care to run this webhook on all hosts which run an apiserver which might need to make calls to this webhook. Such installs are likely to be non-portable, i.e., not easy to turn up in a new cluster. The scheme must be "https"; the URL must begin with "https://". A path is optional, and if present may be any string permissible in a URL. You may use the path to pass an arbitrary string to the webhook, for example, a cluster identifier. Attempting to use a user or basic auth e.g. "user:password@" is not allowed. Fragments ("#...") and query parameters ("?...") are not allowed, either.

Type: object
Throttle holds the options for throttling the webhook

Type: integerFormat: int64
ThrottleBurst is the maximum number of events sent at the same moment default 15 QPS

Type: integerFormat: int64
ThrottleQPS maximum number of batches per second default 10 QPS
Type: object
AuditSinkList is a list of AuditSink items.

Type: string
APIVersion defines the versioned schema of this representation of an object. Servers should convert recognized schemas to the latest internal value, and may reject unrecognized values. More info: https://git.k8s.io/community/contributors/devel/api-conventions.md#resources

Type: array
List of audit configurations. No Additional Items

Each item of this array must be:

Type: object
AuditSink represents a cluster level audit sinkSame definition as oneOf_i92

Type: enum (of string)
Kind is a string value representing the REST resource this object represents. Servers may infer this from the endpoint the client submits requests to. Cannot be updated. In CamelCase. More info: https://git.k8s.io/community/contributors/devel/api-conventions.md#types-kinds

Must be one of:

  • "AuditSinkList"

Type: object
ListMeta describes metadata that synthetic resources must have, including lists and various status objects. A resource may have only one of {ObjectMeta, ListMeta}.Same definition as metadata
Type: object
AuditSinkSpec holds the spec for the audit sinkSame definition as spec
Type: object
Policy defines the configuration of how audit events are loggedSame definition as policy
Type: object
ServiceReference holds a reference to Service.legacy.k8s.ioSame definition as service
Type: object
Webhook holds the configuration of the webhookSame definition as webhook
Type: object
WebhookClientConfig contains the information to make a connection with the webhookSame definition as clientConfig
Type: object
WebhookThrottleConfig holds the configuration for throttling eventsSame definition as throttle
Type: object
TokenReview attempts to authenticate a token to a known user. Note: TokenReview requests may be cached by the webhook token authenticator plugin in the kube-apiserver.

Type: string
APIVersion defines the versioned schema of this representation of an object. Servers should convert recognized schemas to the latest internal value, and may reject unrecognized values. More info: https://git.k8s.io/community/contributors/devel/api-conventions.md#resources

Type: enum (of string)
Kind is a string value representing the REST resource this object represents. Servers may infer this from the endpoint the client submits requests to. Cannot be updated. In CamelCase. More info: https://git.k8s.io/community/contributors/devel/api-conventions.md#types-kinds

Must be one of:

  • "TokenReview"

Type: object
ObjectMeta is metadata that all persisted resources must have, which includes all objects users must create.Same definition as metadata

Type: object
Spec holds information about the request being evaluated

Type: array of string
Audiences is a list of the identifiers that the resource server presented with the token identifies as. Audience-aware token authenticators will verify that the token was intended for at least one of the audiences in this list. If no audiences are provided, the audience will default to the audience of the Kubernetes apiserver. No Additional Items

Each item of this array must be:

Type: string
Token is the opaque bearer token.

Type: object
Status is filled in by the server and indicates whether the request can be authenticated.

Type: array of string
Audiences are audience identifiers chosen by the authenticator that are compatible with both the TokenReview and token. An identifier is any identifier in the intersection of the TokenReviewSpec audiences and the token's audiences. A client of the TokenReview API that sets the spec.audiences field should validate that a compatible audience identifier is returned in the status.audiences field to ensure that the TokenReview server is audience aware. If a TokenReview returns an empty status.audience field where status.authenticated is "true", the token is valid against the audience of the Kubernetes API server.
No Additional Items

Each item of this array must be:

Type: boolean
Authenticated indicates that the token was associated with a known user.

Type: string
Error indicates that the token couldn't be checked

Type: object
User is the UserInfo associated with the provided token.

Type: object
Any additional information provided by the authenticator.

Each additional property must conform to the following schema

Type: array of string
No Additional Items

Each item of this array must be:

Type: array of string
The names of groups this user is a part of. No Additional Items

Each item of this array must be:

Type: string
A unique value that identifies this user across time. If this user is deleted and another user by the same name is added, they will have different UIDs.

Type: string
The name that uniquely identifies this user among all active users.
Type: object
TokenReviewSpec is a description of the token authentication request.Same definition as spec
Type: object
TokenReviewStatus is the result of the token authentication request.Same definition as status
Type: object
UserInfo holds the information about the user needed to implement the user.Info interface.Same definition as user
Type: object
TokenReview attempts to authenticate a token to a known user. Note: TokenReview requests may be cached by the webhook token authenticator plugin in the kube-apiserver.

Type: string
APIVersion defines the versioned schema of this representation of an object. Servers should convert recognized schemas to the latest internal value, and may reject unrecognized values. More info: https://git.k8s.io/community/contributors/devel/api-conventions.md#resources

Type: enum (of string)
Kind is a string value representing the REST resource this object represents. Servers may infer this from the endpoint the client submits requests to. Cannot be updated. In CamelCase. More info: https://git.k8s.io/community/contributors/devel/api-conventions.md#types-kinds

Must be one of:

  • "TokenReview"

Type: object
ObjectMeta is metadata that all persisted resources must have, which includes all objects users must create.Same definition as metadata

Type: object
Spec holds information about the request being evaluated

Type: array of string
Audiences is a list of the identifiers that the resource server presented with the token identifies as. Audience-aware token authenticators will verify that the token was intended for at least one of the audiences in this list. If no audiences are provided, the audience will default to the audience of the Kubernetes apiserver. No Additional Items

Each item of this array must be:

Type: string
Token is the opaque bearer token.

Type: object
Status is filled in by the server and indicates whether the request can be authenticated.

Type: array of string
Audiences are audience identifiers chosen by the authenticator that are compatible with both the TokenReview and token. An identifier is any identifier in the intersection of the TokenReviewSpec audiences and the token's audiences. A client of the TokenReview API that sets the spec.audiences field should validate that a compatible audience identifier is returned in the status.audiences field to ensure that the TokenReview server is audience aware. If a TokenReview returns an empty status.audience field where status.authenticated is "true", the token is valid against the audience of the Kubernetes API server.
No Additional Items

Each item of this array must be:

Type: boolean
Authenticated indicates that the token was associated with a known user.

Type: string
Error indicates that the token couldn't be checked

Type: object
User is the UserInfo associated with the provided token.

Type: object
Any additional information provided by the authenticator.

Each additional property must conform to the following schema

Type: array of string
No Additional Items

Each item of this array must be:

Type: array of string
The names of groups this user is a part of. No Additional Items

Each item of this array must be:

Type: string
A unique value that identifies this user across time. If this user is deleted and another user by the same name is added, they will have different UIDs.

Type: string
The name that uniquely identifies this user among all active users.
Type: object
TokenReviewSpec is a description of the token authentication request.Same definition as spec
Type: object
TokenReviewStatus is the result of the token authentication request.Same definition as status
Type: object
UserInfo holds the information about the user needed to implement the user.Info interface.Same definition as user
Type: object
LocalSubjectAccessReview checks whether or not a user or group can perform an action in a given namespace. Having a namespace scoped resource makes it much easier to grant namespace scoped policy that includes permissions checking.

Type: string
APIVersion defines the versioned schema of this representation of an object. Servers should convert recognized schemas to the latest internal value, and may reject unrecognized values. More info: https://git.k8s.io/community/contributors/devel/api-conventions.md#resources

Type: enum (of string)
Kind is a string value representing the REST resource this object represents. Servers may infer this from the endpoint the client submits requests to. Cannot be updated. In CamelCase. More info: https://git.k8s.io/community/contributors/devel/api-conventions.md#types-kinds

Must be one of:

  • "LocalSubjectAccessReview"

Type: object
ObjectMeta is metadata that all persisted resources must have, which includes all objects users must create.Same definition as metadata

Type: object
Spec holds information about the request being evaluated. spec.namespace must be equal to the namespace you made the request against. If empty, it is defaulted.

Type: object
Extra corresponds to the user.Info.GetExtra() method from the authenticator. Since that is input to the authorizer it needs a reflection here.

Each additional property must conform to the following schema

Type: array of string
No Additional Items

Each item of this array must be:

Type: array of string
Groups is the groups you're testing for. No Additional Items

Each item of this array must be:

Type: object
NonResourceAttributes describes information for a non-resource access request

Type: string
Path is the URL path of the request

Type: string
Verb is the standard HTTP verb

Type: object
ResourceAuthorizationAttributes describes information for a resource access request

Type: string
Group is the API Group of the Resource. "*" means all.

Type: string
Name is the name of the resource being requested for a "get" or deleted for a "delete". "" (empty) means all.

Type: string
Namespace is the namespace of the action being requested. Currently, there is no distinction between no namespace and all namespaces "" (empty) is defaulted for LocalSubjectAccessReviews "" (empty) is empty for cluster-scoped resources "" (empty) means "all" for namespace scoped resources from a SubjectAccessReview or SelfSubjectAccessReview

Type: string
Resource is one of the existing resource types. "*" means all.

Type: string
Subresource is one of the existing resource types. "" means none.

Type: string
Verb is a kubernetes resource API verb, like: get, list, watch, create, update, delete, proxy. "*" means all.

Type: string
Version is the API Version of the Resource. "*" means all.

Type: string
UID information about the requesting user.

Type: string
User is the user you're testing for. If you specify "User" but not "Groups", then is it interpreted as "What if User were not a member of any groups

Type: object
Status is filled in by the server and indicates whether the request is allowed or not

Type: boolean
Allowed is required. True if the action would be allowed, false otherwise.

Type: boolean
Denied is optional. True if the action would be denied, otherwise false. If both allowed is false and denied is false, then the authorizer has no opinion on whether to authorize the action. Denied may not be true if Allowed is true.

Type: string
EvaluationError is an indication that some error occurred during the authorization check. It is entirely possible to get an error and be able to continue determine authorization status in spite of it. For instance, RBAC can be missing a role, but enough roles are still present and bound to reason about the request.

Type: string
Reason is optional. It indicates why a request was allowed or denied.
Type: object
NonResourceAttributes includes the authorization attributes available for non-resource requests to the Authorizer interfaceSame definition as nonResourceAttributes
Type: object
NonResourceRule holds information that describes a rule for the non-resource

Type: array of string
NonResourceURLs is a set of partial urls that a user should have access to. *s are allowed, but only as the full, final step in the path. "*" means all. No Additional Items

Each item of this array must be:

Type: array of string
Verb is a list of kubernetes non-resource API verbs, like: get, post, put, delete, patch, head, options. "*" means all. No Additional Items

Each item of this array must be:

Type: string
Type: object
ResourceAttributes includes the authorization attributes available for resource requests to the Authorizer interfaceSame definition as resourceAttributes
Type: object
ResourceRule is the list of actions the subject is allowed to perform on resources. The list ordering isn't significant, may contain duplicates, and possibly be incomplete.

Type: array of string
APIGroups is the name of the APIGroup that contains the resources. If multiple API groups are specified, any action requested against one of the enumerated resources in any API group will be allowed. "*" means all. No Additional Items

Each item of this array must be:

Type: array of string
ResourceNames is an optional white list of names that the rule applies to. An empty set means that everything is allowed. "*" means all. No Additional Items

Each item of this array must be:

Type: array of string
Resources is a list of resources this rule applies to. "*" means all in the specified apiGroups. "*/foo" represents the subresource 'foo' for all resources in the specified apiGroups. No Additional Items

Each item of this array must be:

Type: array of string
Verb is a list of kubernetes resource API verbs, like: get, list, watch, create, update, delete, proxy. "*" means all. No Additional Items

Each item of this array must be:

Type: string
Type: object
SelfSubjectAccessReview checks whether or the current user can perform an action. Not filling in a spec.namespace means "in all namespaces". Self is a special case, because users should always be able to check whether they can perform an action

Type: string
APIVersion defines the versioned schema of this representation of an object. Servers should convert recognized schemas to the latest internal value, and may reject unrecognized values. More info: https://git.k8s.io/community/contributors/devel/api-conventions.md#resources

Type: enum (of string)
Kind is a string value representing the REST resource this object represents. Servers may infer this from the endpoint the client submits requests to. Cannot be updated. In CamelCase. More info: https://git.k8s.io/community/contributors/devel/api-conventions.md#types-kinds

Must be one of:

  • "SelfSubjectAccessReview"

Type: object
ObjectMeta is metadata that all persisted resources must have, which includes all objects users must create.Same definition as metadata

Type: object
Spec holds information about the request being evaluated. user and groups must be empty

Type: object
NonResourceAttributes describes information for a non-resource access requestSame definition as nonResourceAttributes

Type: object
ResourceAuthorizationAttributes describes information for a resource access requestSame definition as resourceAttributes

Type: object
Status is filled in by the server and indicates whether the request is allowed or notSame definition as status
Type: object
SelfSubjectAccessReviewSpec is a description of the access request. Exactly one of ResourceAuthorizationAttributes and NonResourceAuthorizationAttributes must be setSame definition as spec
Type: object
SelfSubjectRulesReview enumerates the set of actions the current user can perform within a namespace. The returned list of actions may be incomplete depending on the server's authorization mode, and any errors experienced during the evaluation. SelfSubjectRulesReview should be used by UIs to show/hide actions, or to quickly let an end user reason about their permissions. It should NOT Be used by external systems to drive authorization decisions as this raises confused deputy, cache lifetime/revocation, and correctness concerns. SubjectAccessReview, and LocalAccessReview are the correct way to defer authorization decisions to the API server.

Type: string
APIVersion defines the versioned schema of this representation of an object. Servers should convert recognized schemas to the latest internal value, and may reject unrecognized values. More info: https://git.k8s.io/community/contributors/devel/api-conventions.md#resources

Type: enum (of string)
Kind is a string value representing the REST resource this object represents. Servers may infer this from the endpoint the client submits requests to. Cannot be updated. In CamelCase. More info: https://git.k8s.io/community/contributors/devel/api-conventions.md#types-kinds

Must be one of:

  • "SelfSubjectRulesReview"

Type: object
ObjectMeta is metadata that all persisted resources must have, which includes all objects users must create.Same definition as metadata

Type: object
Spec holds information about the request being evaluated.

Type: string
Namespace to evaluate rules for. Required.

Type: object
Status is filled in by the server and indicates the set of actions a user can perform.

Type: string
EvaluationError can appear in combination with Rules. It indicates an error occurred during rule evaluation, such as an authorizer that doesn't support rule evaluation, and that ResourceRules and/or NonResourceRules may be incomplete.

Type: boolean
Incomplete is true when the rules returned by this call are incomplete. This is most commonly encountered when an authorizer, such as an external authorizer, doesn't support rules evaluation.

Type: array
NonResourceRules is the list of actions the subject is allowed to perform on non-resources. The list ordering isn't significant, may contain duplicates, and possibly be incomplete. No Additional Items

Each item of this array must be:

Type: object
NonResourceRule holds information that describes a rule for the non-resourceSame definition as oneOf_i110

Type: array
ResourceRules is the list of actions the subject is allowed to perform on resources. The list ordering isn't significant, may contain duplicates, and possibly be incomplete. No Additional Items

Each item of this array must be:

Type: object
ResourceRule is the list of actions the subject is allowed to perform on resources. The list ordering isn't significant, may contain duplicates, and possibly be incomplete.Same definition as oneOf_i112
Type: object
SubjectAccessReview checks whether or not a user or group can perform an action.

Type: string
APIVersion defines the versioned schema of this representation of an object. Servers should convert recognized schemas to the latest internal value, and may reject unrecognized values. More info: https://git.k8s.io/community/contributors/devel/api-conventions.md#resources

Type: enum (of string)
Kind is a string value representing the REST resource this object represents. Servers may infer this from the endpoint the client submits requests to. Cannot be updated. In CamelCase. More info: https://git.k8s.io/community/contributors/devel/api-conventions.md#types-kinds

Must be one of:

  • "SubjectAccessReview"

Type: object
ObjectMeta is metadata that all persisted resources must have, which includes all objects users must create.Same definition as metadata

Type: object
Spec holds information about the request being evaluatedSame definition as spec

Type: object
Status is filled in by the server and indicates whether the request is allowed or notSame definition as status
Type: object
SubjectAccessReviewSpec is a description of the access request. Exactly one of ResourceAuthorizationAttributes and NonResourceAuthorizationAttributes must be setSame definition as spec
Type: object
SubjectRulesReviewStatus contains the result of a rules check. This check can be incomplete depending on the set of authorizers the server is configured with and any errors experienced during evaluation. Because authorization rules are additive, if a rule appears in a list it's safe to assume the subject has that permission, even if that list is incomplete.Same definition as status
Type: object
LocalSubjectAccessReview checks whether or not a user or group can perform an action in a given namespace. Having a namespace scoped resource makes it much easier to grant namespace scoped policy that includes permissions checking.

Type: string
APIVersion defines the versioned schema of this representation of an object. Servers should convert recognized schemas to the latest internal value, and may reject unrecognized values. More info: https://git.k8s.io/community/contributors/devel/api-conventions.md#resources

Type: enum (of string)
Kind is a string value representing the REST resource this object represents. Servers may infer this from the endpoint the client submits requests to. Cannot be updated. In CamelCase. More info: https://git.k8s.io/community/contributors/devel/api-conventions.md#types-kinds

Must be one of:

  • "LocalSubjectAccessReview"

Type: object
ObjectMeta is metadata that all persisted resources must have, which includes all objects users must create.Same definition as metadata

Type: object
Spec holds information about the request being evaluated. spec.namespace must be equal to the namespace you made the request against. If empty, it is defaulted.

Type: object
Extra corresponds to the user.Info.GetExtra() method from the authenticator. Since that is input to the authorizer it needs a reflection here.

Each additional property must conform to the following schema

Type: array of string
No Additional Items

Each item of this array must be:

Type: array of string
Groups is the groups you're testing for. No Additional Items

Each item of this array must be:

Type: string

Type: object
NonResourceAttributes describes information for a non-resource access request

Type: string
Path is the URL path of the request

Type: string
Verb is the standard HTTP verb

Type: object
ResourceAuthorizationAttributes describes information for a resource access request

Type: string
Group is the API Group of the Resource. "*" means all.

Type: string
Name is the name of the resource being requested for a "get" or deleted for a "delete". "" (empty) means all.

Type: string
Namespace is the namespace of the action being requested. Currently, there is no distinction between no namespace and all namespaces "" (empty) is defaulted for LocalSubjectAccessReviews "" (empty) is empty for cluster-scoped resources "" (empty) means "all" for namespace scoped resources from a SubjectAccessReview or SelfSubjectAccessReview

Type: string
Resource is one of the existing resource types. "*" means all.

Type: string
Subresource is one of the existing resource types. "" means none.

Type: string
Verb is a kubernetes resource API verb, like: get, list, watch, create, update, delete, proxy. "*" means all.

Type: string
Version is the API Version of the Resource. "*" means all.

Type: string
UID information about the requesting user.

Type: string
User is the user you're testing for. If you specify "User" but not "Group", then is it interpreted as "What if User were not a member of any groups

Type: object
Status is filled in by the server and indicates whether the request is allowed or not

Type: boolean
Allowed is required. True if the action would be allowed, false otherwise.

Type: boolean
Denied is optional. True if the action would be denied, otherwise false. If both allowed is false and denied is false, then the authorizer has no opinion on whether to authorize the action. Denied may not be true if Allowed is true.

Type: string
EvaluationError is an indication that some error occurred during the authorization check. It is entirely possible to get an error and be able to continue determine authorization status in spite of it. For instance, RBAC can be missing a role, but enough roles are still present and bound to reason about the request.

Type: string
Reason is optional. It indicates why a request was allowed or denied.
Type: object
NonResourceAttributes includes the authorization attributes available for non-resource requests to the Authorizer interfaceSame definition as nonResourceAttributes
Type: object
NonResourceRule holds information that describes a rule for the non-resource

Type: array of string
NonResourceURLs is a set of partial urls that a user should have access to. *s are allowed, but only as the full, final step in the path. "*" means all. No Additional Items

Each item of this array must be:

Type: array of string
Verb is a list of kubernetes non-resource API verbs, like: get, post, put, delete, patch, head, options. "*" means all. No Additional Items

Each item of this array must be:

Type: string
Type: object
ResourceAttributes includes the authorization attributes available for resource requests to the Authorizer interfaceSame definition as resourceAttributes
Type: object
ResourceRule is the list of actions the subject is allowed to perform on resources. The list ordering isn't significant, may contain duplicates, and possibly be incomplete.

Type: array of string
APIGroups is the name of the APIGroup that contains the resources. If multiple API groups are specified, any action requested against one of the enumerated resources in any API group will be allowed. "*" means all. No Additional Items

Each item of this array must be:

Type: array of string
ResourceNames is an optional white list of names that the rule applies to. An empty set means that everything is allowed. "*" means all. No Additional Items

Each item of this array must be:

Type: array of string
Resources is a list of resources this rule applies to. "*" means all in the specified apiGroups. "*/foo" represents the subresource 'foo' for all resources in the specified apiGroups. No Additional Items

Each item of this array must be:

Type: array of string
Verb is a list of kubernetes resource API verbs, like: get, list, watch, create, update, delete, proxy. "*" means all. No Additional Items

Each item of this array must be:

Type: string
Type: object
SelfSubjectAccessReview checks whether or the current user can perform an action. Not filling in a spec.namespace means "in all namespaces". Self is a special case, because users should always be able to check whether they can perform an action

Type: string
APIVersion defines the versioned schema of this representation of an object. Servers should convert recognized schemas to the latest internal value, and may reject unrecognized values. More info: https://git.k8s.io/community/contributors/devel/api-conventions.md#resources

Type: enum (of string)
Kind is a string value representing the REST resource this object represents. Servers may infer this from the endpoint the client submits requests to. Cannot be updated. In CamelCase. More info: https://git.k8s.io/community/contributors/devel/api-conventions.md#types-kinds

Must be one of:

  • "SelfSubjectAccessReview"

Type: object
ObjectMeta is metadata that all persisted resources must have, which includes all objects users must create.Same definition as metadata

Type: object
Spec holds information about the request being evaluated. user and groups must be empty

Type: object
NonResourceAttributes describes information for a non-resource access requestSame definition as nonResourceAttributes

Type: object
ResourceAuthorizationAttributes describes information for a resource access requestSame definition as resourceAttributes

Type: object
Status is filled in by the server and indicates whether the request is allowed or notSame definition as status
Type: object
SelfSubjectAccessReviewSpec is a description of the access request. Exactly one of ResourceAuthorizationAttributes and NonResourceAuthorizationAttributes must be setSame definition as spec
Type: object
SelfSubjectRulesReview enumerates the set of actions the current user can perform within a namespace. The returned list of actions may be incomplete depending on the server's authorization mode, and any errors experienced during the evaluation. SelfSubjectRulesReview should be used by UIs to show/hide actions, or to quickly let an end user reason about their permissions. It should NOT Be used by external systems to drive authorization decisions as this raises confused deputy, cache lifetime/revocation, and correctness concerns. SubjectAccessReview, and LocalAccessReview are the correct way to defer authorization decisions to the API server.

Type: string
APIVersion defines the versioned schema of this representation of an object. Servers should convert recognized schemas to the latest internal value, and may reject unrecognized values. More info: https://git.k8s.io/community/contributors/devel/api-conventions.md#resources

Type: enum (of string)
Kind is a string value representing the REST resource this object represents. Servers may infer this from the endpoint the client submits requests to. Cannot be updated. In CamelCase. More info: https://git.k8s.io/community/contributors/devel/api-conventions.md#types-kinds

Must be one of:

  • "SelfSubjectRulesReview"

Type: object
ObjectMeta is metadata that all persisted resources must have, which includes all objects users must create.Same definition as metadata

Type: object
Spec holds information about the request being evaluated.

Type: string
Namespace to evaluate rules for. Required.

Type: object
Status is filled in by the server and indicates the set of actions a user can perform.

Type: string
EvaluationError can appear in combination with Rules. It indicates an error occurred during rule evaluation, such as an authorizer that doesn't support rule evaluation, and that ResourceRules and/or NonResourceRules may be incomplete.

Type: boolean
Incomplete is true when the rules returned by this call are incomplete. This is most commonly encountered when an authorizer, such as an external authorizer, doesn't support rules evaluation.

Type: array
NonResourceRules is the list of actions the subject is allowed to perform on non-resources. The list ordering isn't significant, may contain duplicates, and possibly be incomplete. No Additional Items

Each item of this array must be:

Type: object
NonResourceRule holds information that describes a rule for the non-resourceSame definition as oneOf_i123

Type: array
ResourceRules is the list of actions the subject is allowed to perform on resources. The list ordering isn't significant, may contain duplicates, and possibly be incomplete. No Additional Items

Each item of this array must be:

Type: object
ResourceRule is the list of actions the subject is allowed to perform on resources. The list ordering isn't significant, may contain duplicates, and possibly be incomplete.Same definition as oneOf_i125
Type: object
SubjectAccessReview checks whether or not a user or group can perform an action.

Type: string
APIVersion defines the versioned schema of this representation of an object. Servers should convert recognized schemas to the latest internal value, and may reject unrecognized values. More info: https://git.k8s.io/community/contributors/devel/api-conventions.md#resources

Type: enum (of string)
Kind is a string value representing the REST resource this object represents. Servers may infer this from the endpoint the client submits requests to. Cannot be updated. In CamelCase. More info: https://git.k8s.io/community/contributors/devel/api-conventions.md#types-kinds

Must be one of:

  • "SubjectAccessReview"

Type: object
ObjectMeta is metadata that all persisted resources must have, which includes all objects users must create.Same definition as metadata

Type: object
Spec holds information about the request being evaluatedSame definition as spec

Type: object
Status is filled in by the server and indicates whether the request is allowed or notSame definition as status
Type: object
SubjectAccessReviewSpec is a description of the access request. Exactly one of ResourceAuthorizationAttributes and NonResourceAuthorizationAttributes must be setSame definition as spec
Type: object
SubjectRulesReviewStatus contains the result of a rules check. This check can be incomplete depending on the set of authorizers the server is configured with and any errors experienced during evaluation. Because authorization rules are additive, if a rule appears in a list it's safe to assume the subject has that permission, even if that list is incomplete.Same definition as status
Type: object
CrossVersionObjectReference contains enough information to let you identify the referred resource.

Type: string
API version of the referent

Type: string
Kind of the referent; More info: https://git.k8s.io/community/contributors/devel/api-conventions.md#types-kinds"

Type: string
Name of the referent; More info: http://kubernetes.io/docs/user-guide/identifiers#names
Type: object
configuration of a horizontal pod autoscaler.

Type: string
APIVersion defines the versioned schema of this representation of an object. Servers should convert recognized schemas to the latest internal value, and may reject unrecognized values. More info: https://git.k8s.io/community/contributors/devel/api-conventions.md#resources

Type: enum (of string)
Kind is a string value representing the REST resource this object represents. Servers may infer this from the endpoint the client submits requests to. Cannot be updated. In CamelCase. More info: https://git.k8s.io/community/contributors/devel/api-conventions.md#types-kinds

Must be one of:

  • "HorizontalPodAutoscaler"

Type: object
Standard object metadata. More info: https://git.k8s.io/community/contributors/devel/api-conventions.md#metadataSame definition as metadata

Type: object
behaviour of autoscaler. More info: https://git.k8s.io/community/contributors/devel/api-conventions.md#spec-and-status.

Type: integerFormat: int32
upper limit for the number of pods that can be set by the autoscaler; cannot be smaller than MinReplicas.

Type: integerFormat: int32
lower limit for the number of pods that can be set by the autoscaler, default 1.

Type: object
reference to scaled resource; horizontal pod autoscaler will learn the current resource consumption and will set the desired number of pods by using its Scale subresource.Same definition as oneOf_i134

Type: integerFormat: int32
target average CPU utilization (represented as a percentage of requested CPU) over all the pods; if not specified the default autoscaling policy will be used.

Type: object
current information about the autoscaler.

Type: integerFormat: int32
current average CPU utilization over all pods, represented as a percentage of requested CPU, e.g. 70 means that an average pod is using now 70% of its requested CPU.

Type: integerFormat: int32
current number of replicas of pods managed by this autoscaler.

Type: integerFormat: int32
desired number of replicas of pods managed by this autoscaler.

Type: string
last time the HorizontalPodAutoscaler scaled the number of pods; used by the autoscaler to control how often the number of pods is changed.Same definition as creationTimestamp

Type: integerFormat: int64
most recent generation observed by this autoscaler.
Type: object
list of horizontal pod autoscaler objects.

Type: string
APIVersion defines the versioned schema of this representation of an object. Servers should convert recognized schemas to the latest internal value, and may reject unrecognized values. More info: https://git.k8s.io/community/contributors/devel/api-conventions.md#resources

Type: array
list of horizontal pod autoscaler objects. No Additional Items

Each item of this array must be:

Type: object
configuration of a horizontal pod autoscaler.Same definition as oneOf_i135

Type: enum (of string)
Kind is a string value representing the REST resource this object represents. Servers may infer this from the endpoint the client submits requests to. Cannot be updated. In CamelCase. More info: https://git.k8s.io/community/contributors/devel/api-conventions.md#types-kinds

Must be one of:

  • "HorizontalPodAutoscalerList"

Type: object
Standard list metadata.Same definition as metadata
Type: object
specification of a horizontal pod autoscaler.Same definition as spec
Type: object
current status of a horizontal pod autoscalerSame definition as status
Type: object
Scale represents a scaling request for a resource.

Type: string
APIVersion defines the versioned schema of this representation of an object. Servers should convert recognized schemas to the latest internal value, and may reject unrecognized values. More info: https://git.k8s.io/community/contributors/devel/api-conventions.md#resources

Type: enum (of string)
Kind is a string value representing the REST resource this object represents. Servers may infer this from the endpoint the client submits requests to. Cannot be updated. In CamelCase. More info: https://git.k8s.io/community/contributors/devel/api-conventions.md#types-kinds

Must be one of:

  • "Scale"

Type: object
Standard object metadata; More info: https://git.k8s.io/community/contributors/devel/api-conventions.md#metadata.Same definition as metadata

Type: object
defines the behavior of the scale. More info: https://git.k8s.io/community/contributors/devel/api-conventions.md#spec-and-status.

Type: integerFormat: int32
desired number of instances for the scaled object.

Type: object
current status of the scale. More info: https://git.k8s.io/community/contributors/devel/api-conventions.md#spec-and-status. Read-only.

Type: integerFormat: int32
actual number of observed instances of the scaled object.

Type: string
label query over pods that should match the replicas count. This is same as the label selector but in the string format to avoid introspection by clients. The string will be in the same format as the query-param syntax. More info about label selectors: http://kubernetes.io/docs/user-guide/labels#label-selectors
Type: object
ScaleSpec describes the attributes of a scale subresource.Same definition as spec
Type: object
ScaleStatus represents the current status of a scale subresource.Same definition as status
Type: object
CrossVersionObjectReference contains enough information to let you identify the referred resource.

Type: string
API version of the referent

Type: string
Kind of the referent; More info: https://git.k8s.io/community/contributors/devel/api-conventions.md#types-kinds"

Type: string
Name of the referent; More info: http://kubernetes.io/docs/user-guide/identifiers#names
Type: object
ExternalMetricSource indicates how to scale on a metric not associated with any Kubernetes object (for example length of queue in cloud messaging service, or QPS from loadbalancer running outside of cluster). Exactly one "target" type should be set.

Type: string
metricName is the name of the metric in question.

Type: object
metricSelector is used to identify a specific time series within a given metric.Same definition as namespaceSelector

Type: object
targetAverageValue is the target per-pod value of global metric (as a quantity). Mutually exclusive with TargetValue.Same definition as divisor

Type: object
targetValue is the target value of the metric (as a quantity). Mutually exclusive with TargetAverageValue.Same definition as divisor
Type: object
ExternalMetricStatus indicates the current value of a global metric not associated with any Kubernetes object.

Type: object
currentAverageValue is the current value of metric averaged over autoscaled pods.Same definition as divisor

Type: object
currentValue is the current value of the metric (as a quantity)Same definition as divisor

Type: string
metricName is the name of a metric used for autoscaling in metric system.

Type: object
metricSelector is used to identify a specific time series within a given metric.Same definition as namespaceSelector
Type: object
HorizontalPodAutoscaler is the configuration for a horizontal pod autoscaler, which automatically manages the replica count of any resource implementing the scale subresource based on the metrics specified.

Type: string
APIVersion defines the versioned schema of this representation of an object. Servers should convert recognized schemas to the latest internal value, and may reject unrecognized values. More info: https://git.k8s.io/community/contributors/devel/api-conventions.md#resources

Type: enum (of string)
Kind is a string value representing the REST resource this object represents. Servers may infer this from the endpoint the client submits requests to. Cannot be updated. In CamelCase. More info: https://git.k8s.io/community/contributors/devel/api-conventions.md#types-kinds

Must be one of:

  • "HorizontalPodAutoscaler"

Type: object
metadata is the standard object metadata. More info: https://git.k8s.io/community/contributors/devel/api-conventions.md#metadataSame definition as metadata

Type: object
spec is the specification for the behaviour of the autoscaler. More info: https://git.k8s.io/community/contributors/devel/api-conventions.md#spec-and-status.

Type: integerFormat: int32
maxReplicas is the upper limit for the number of replicas to which the autoscaler can scale up. It cannot be less that minReplicas.

Type: array
metrics contains the specifications for which to use to calculate the desired replica count (the maximum replica count across all metrics will be used). The desired replica count is calculated multiplying the ratio between the target value and the current value by the current number of pods. Ergo, metrics used must decrease as the pod count is increased, and vice-versa. See the individual metric source types for more information about how each type of metric must respond. No Additional Items

Each item of this array must be:

Type: object
MetricSpec specifies how to scale based on a single metric (only `type` and one other matching field should be set at once).

Type: object
external refers to a global metric that is not associated with any Kubernetes object. It allows autoscaling based on information coming from components running outside of cluster (for example length of queue in cloud messaging service, or QPS from loadbalancer running outside of cluster).Same definition as oneOf_i143

Type: object
object refers to a metric describing a single kubernetes object (for example, hits-per-second on an Ingress object).

Type: object
averageValue is the target value of the average of the metric across all relevant pods (as a quantity)Same definition as divisor

Type: string
metricName is the name of the metric in question.

Type: object
selector is the string-encoded form of a standard kubernetes label selector for the given metric When set, it is passed as an additional parameter to the metrics server for more specific metrics scoping When unset, just the metricName will be used to gather metrics.Same definition as namespaceSelector

Type: object
target is the described Kubernetes object.Same definition as oneOf_i142

Type: object
targetValue is the target value of the metric (as a quantity).Same definition as divisor

Type: object
pods refers to a metric describing each pod in the current scale target (for example, transactions-processed-per-second). The values will be averaged together before being compared to the target value.

Type: string
metricName is the name of the metric in question

Type: object
selector is the string-encoded form of a standard kubernetes label selector for the given metric When set, it is passed as an additional parameter to the metrics server for more specific metrics scoping When unset, just the metricName will be used to gather metrics.Same definition as namespaceSelector

Type: object
targetAverageValue is the target value of the average of the metric across all relevant pods (as a quantity)Same definition as divisor

Type: object
resource refers to a resource metric (such as those specified in requests and limits) known to Kubernetes describing each pod in the current scale target (e.g. CPU or memory). Such metrics are built in to Kubernetes, and have special scaling options on top of those available to normal per-pod metrics using the "pods" source.

Type: string
name is the name of the resource in question.

Type: integerFormat: int32
targetAverageUtilization is the target value of the average of the resource metric across all relevant pods, represented as a percentage of the requested value of the resource for the pods.

Type: object
targetAverageValue is the target value of the average of the resource metric across all relevant pods, as a raw value (instead of as a percentage of the request), similar to the "pods" metric source type.Same definition as divisor

Type: string
type is the type of metric source. It should be one of "Object", "Pods" or "Resource", each mapping to a matching field in the object.

Type: integerFormat: int32
minReplicas is the lower limit for the number of replicas to which the autoscaler can scale down. It defaults to 1 pod.

Type: object
scaleTargetRef points to the target resource to scale, and is used to the pods for which metrics should be collected, as well as to actually change the replica count.Same definition as oneOf_i142

Type: object
status is the current information about the autoscaler.

Type: array
conditions is the set of conditions required for this autoscaler to scale its target, and indicates whether or not those conditions are met. No Additional Items

Each item of this array must be:

Type: object
HorizontalPodAutoscalerCondition describes the state of a HorizontalPodAutoscaler at a certain point.

Type: string
lastTransitionTime is the last time the condition transitioned from one status to anotherSame definition as creationTimestamp

Type: string
message is a human-readable explanation containing details about the transition

Type: string
reason is the reason for the condition's last transition.

Type: string
status is the status of the condition (True, False, Unknown)

Type: string
type describes the current condition

Type: array
currentMetrics is the last read state of the metrics used by this autoscaler. No Additional Items

Each item of this array must be:

Type: object
MetricStatus describes the last-read state of a single metric.

Type: object
external refers to a global metric that is not associated with any Kubernetes object. It allows autoscaling based on information coming from components running outside of cluster (for example length of queue in cloud messaging service, or QPS from loadbalancer running outside of cluster).Same definition as oneOf_i144

Type: object
object refers to a metric describing a single kubernetes object (for example, hits-per-second on an Ingress object).

Type: object
averageValue is the current value of the average of the metric across all relevant pods (as a quantity)Same definition as divisor

Type: object
currentValue is the current value of the metric (as a quantity).Same definition as divisor

Type: string
metricName is the name of the metric in question.

Type: object
selector is the string-encoded form of a standard kubernetes label selector for the given metric When set in the ObjectMetricSource, it is passed as an additional parameter to the metrics server for more specific metrics scoping. When unset, just the metricName will be used to gather metrics.Same definition as namespaceSelector

Type: object
target is the described Kubernetes object.Same definition as oneOf_i142

Type: object
pods refers to a metric describing each pod in the current scale target (for example, transactions-processed-per-second). The values will be averaged together before being compared to the target value.

Type: object
currentAverageValue is the current value of the average of the metric across all relevant pods (as a quantity)Same definition as divisor

Type: string
metricName is the name of the metric in question

Type: object
selector is the string-encoded form of a standard kubernetes label selector for the given metric When set in the PodsMetricSource, it is passed as an additional parameter to the metrics server for more specific metrics scoping. When unset, just the metricName will be used to gather metrics.Same definition as namespaceSelector

Type: object
resource refers to a resource metric (such as those specified in requests and limits) known to Kubernetes describing each pod in the current scale target (e.g. CPU or memory). Such metrics are built in to Kubernetes, and have special scaling options on top of those available to normal per-pod metrics using the "pods" source.

Type: integerFormat: int32
currentAverageUtilization is the current value of the average of the resource metric across all relevant pods, represented as a percentage of the requested value of the resource for the pods. It will only be present if `targetAverageValue` was set in the corresponding metric specification.

Type: object
currentAverageValue is the current value of the average of the resource metric across all relevant pods, as a raw value (instead of as a percentage of the request), similar to the "pods" metric source type. It will always be set, regardless of the corresponding metric specification.Same definition as divisor

Type: string
name is the name of the resource in question.

Type: string
type is the type of metric source. It will be one of "Object", "Pods" or "Resource", each corresponds to a matching field in the object.

Type: integerFormat: int32
currentReplicas is current number of replicas of pods managed by this autoscaler, as last seen by the autoscaler.

Type: integerFormat: int32
desiredReplicas is the desired number of replicas of pods managed by this autoscaler, as last calculated by the autoscaler.

Type: string
lastScaleTime is the last time the HorizontalPodAutoscaler scaled the number of pods, used by the autoscaler to control how often the number of pods is changed.Same definition as creationTimestamp

Type: integerFormat: int64
observedGeneration is the most recent generation observed by this autoscaler.
Type: object
HorizontalPodAutoscalerCondition describes the state of a HorizontalPodAutoscaler at a certain point.Same definition as oneOf_i145_status_conditions_items
Type: object
HorizontalPodAutoscaler is a list of horizontal pod autoscaler objects.

Type: string
APIVersion defines the versioned schema of this representation of an object. Servers should convert recognized schemas to the latest internal value, and may reject unrecognized values. More info: https://git.k8s.io/community/contributors/devel/api-conventions.md#resources

Type: array
items is the list of horizontal pod autoscaler objects. No Additional Items

Each item of this array must be:

Type: object
HorizontalPodAutoscaler is the configuration for a horizontal pod autoscaler, which automatically manages the replica count of any resource implementing the scale subresource based on the metrics specified.Same definition as oneOf_i145

Type: enum (of string)
Kind is a string value representing the REST resource this object represents. Servers may infer this from the endpoint the client submits requests to. Cannot be updated. In CamelCase. More info: https://git.k8s.io/community/contributors/devel/api-conventions.md#types-kinds

Must be one of:

  • "HorizontalPodAutoscalerList"

Type: object
metadata is the standard list metadata.Same definition as metadata
Type: object
HorizontalPodAutoscalerSpec describes the desired functionality of the HorizontalPodAutoscaler.Same definition as spec
Type: object
HorizontalPodAutoscalerStatus describes the current status of a horizontal pod autoscaler.Same definition as status
Type: object
MetricSpec specifies how to scale based on a single metric (only `type` and one other matching field should be set at once).Same definition as oneOf_i145_spec_metrics_items
Type: object
MetricStatus describes the last-read state of a single metric.Same definition as oneOf_i145_status_currentMetrics_items
Type: object
ObjectMetricSource indicates how to scale on a metric describing a kubernetes object (for example, hits-per-second on an Ingress object).Same definition as object
Type: object
ObjectMetricStatus indicates the current value of a metric describing a kubernetes object (for example, hits-per-second on an Ingress object).Same definition as object
Type: object
PodsMetricSource indicates how to scale on a metric describing each pod in the current scale target (for example, transactions-processed-per-second). The values will be averaged together before being compared to the target value.Same definition as pods
Type: object
PodsMetricStatus indicates the current value of a metric describing each pod in the current scale target (for example, transactions-processed-per-second).Same definition as pods
Type: object
ResourceMetricSource indicates how to scale on a resource metric known to Kubernetes, as specified in requests and limits, describing each pod in the current scale target (e.g. CPU or memory). The values will be averaged together before being compared to the target. Such metrics are built in to Kubernetes, and have special scaling options on top of those available to normal per-pod metrics using the "pods" source. Only one "target" type should be set.Same definition as resource
Type: object
ResourceMetricStatus indicates the current value of a resource metric known to Kubernetes, as specified in requests and limits, describing each pod in the current scale target (e.g. CPU or memory). Such metrics are built in to Kubernetes, and have special scaling options on top of those available to normal per-pod metrics using the "pods" source.Same definition as resource
Type: object
CrossVersionObjectReference contains enough information to let you identify the referred resource.

Type: string
API version of the referent

Type: string
Kind of the referent; More info: https://git.k8s.io/community/contributors/devel/api-conventions.md#types-kinds"

Type: string
Name of the referent; More info: http://kubernetes.io/docs/user-guide/identifiers#names
Type: object
ExternalMetricSource indicates how to scale on a metric not associated with any Kubernetes object (for example length of queue in cloud messaging service, or QPS from loadbalancer running outside of cluster).

Type: object
metric identifies the target metric by name and selector

Type: string
name is the name of the given metric

Type: object
selector is the string-encoded form of a standard kubernetes label selector for the given metric When set, it is passed as an additional parameter to the metrics server for more specific metrics scoping. When unset, just the metricName will be used to gather metrics.Same definition as namespaceSelector

Type: object
target specifies the target value for the given metric

Type: integerFormat: int32
averageUtilization is the target value of the average of the resource metric across all relevant pods, represented as a percentage of the requested value of the resource for the pods. Currently only valid for Resource metric source type

Type: object
averageValue is the target value of the average of the metric across all relevant pods (as a quantity)Same definition as divisor

Type: string
type represents whether the metric type is Utilization, Value, or AverageValue

Type: object
value is the target value of the metric (as a quantity).Same definition as divisor
Type: object
ExternalMetricStatus indicates the current value of a global metric not associated with any Kubernetes object.

Type: object
current contains the current value for the given metric

Type: integerFormat: int32
currentAverageUtilization is the current value of the average of the resource metric across all relevant pods, represented as a percentage of the requested value of the resource for the pods.

Type: object
averageValue is the current value of the average of the metric across all relevant pods (as a quantity)Same definition as divisor

Type: object
value is the current value of the metric (as a quantity).Same definition as divisor

Type: object
metric identifies the target metric by name and selectorSame definition as metric
Type: object
HorizontalPodAutoscaler is the configuration for a horizontal pod autoscaler, which automatically manages the replica count of any resource implementing the scale subresource based on the metrics specified.

Type: string
APIVersion defines the versioned schema of this representation of an object. Servers should convert recognized schemas to the latest internal value, and may reject unrecognized values. More info: https://git.k8s.io/community/contributors/devel/api-conventions.md#resources

Type: enum (of string)
Kind is a string value representing the REST resource this object represents. Servers may infer this from the endpoint the client submits requests to. Cannot be updated. In CamelCase. More info: https://git.k8s.io/community/contributors/devel/api-conventions.md#types-kinds

Must be one of:

  • "HorizontalPodAutoscaler"

Type: object
metadata is the standard object metadata. More info: https://git.k8s.io/community/contributors/devel/api-conventions.md#metadataSame definition as metadata

Type: object
spec is the specification for the behaviour of the autoscaler. More info: https://git.k8s.io/community/contributors/devel/api-conventions.md#spec-and-status.

Type: integerFormat: int32
maxReplicas is the upper limit for the number of replicas to which the autoscaler can scale up. It cannot be less that minReplicas.

Type: array
metrics contains the specifications for which to use to calculate the desired replica count (the maximum replica count across all metrics will be used). The desired replica count is calculated multiplying the ratio between the target value and the current value by the current number of pods. Ergo, metrics used must decrease as the pod count is increased, and vice-versa. See the individual metric source types for more information about how each type of metric must respond. If not set, the default metric will be set to 80% average CPU utilization. No Additional Items

Each item of this array must be:

Type: object
MetricSpec specifies how to scale based on a single metric (only `type` and one other matching field should be set at once).

Type: object
external refers to a global metric that is not associated with any Kubernetes object. It allows autoscaling based on information coming from components running outside of cluster (for example length of queue in cloud messaging service, or QPS from loadbalancer running outside of cluster).Same definition as oneOf_i159

Type: object
object refers to a metric describing a single kubernetes object (for example, hits-per-second on an Ingress object).

Type: object
CrossVersionObjectReference contains enough information to let you identify the referred resource.Same definition as oneOf_i158

Type: object
metric identifies the target metric by name and selectorSame definition as metric

Type: object
target specifies the target value for the given metricSame definition as target

Type: object
pods refers to a metric describing each pod in the current scale target (for example, transactions-processed-per-second). The values will be averaged together before being compared to the target value.

Type: object
metric identifies the target metric by name and selectorSame definition as metric

Type: object
target specifies the target value for the given metricSame definition as target

Type: object
resource refers to a resource metric (such as those specified in requests and limits) known to Kubernetes describing each pod in the current scale target (e.g. CPU or memory). Such metrics are built in to Kubernetes, and have special scaling options on top of those available to normal per-pod metrics using the "pods" source.

Type: string
name is the name of the resource in question.

Type: object
target specifies the target value for the given metricSame definition as target

Type: string
type is the type of metric source. It should be one of "Object", "Pods" or "Resource", each mapping to a matching field in the object.

Type: integerFormat: int32
minReplicas is the lower limit for the number of replicas to which the autoscaler can scale down. It defaults to 1 pod.

Type: object
scaleTargetRef points to the target resource to scale, and is used to the pods for which metrics should be collected, as well as to actually change the replica count.Same definition as oneOf_i158

Type: object
status is the current information about the autoscaler.

Type: array
conditions is the set of conditions required for this autoscaler to scale its target, and indicates whether or not those conditions are met. No Additional Items

Each item of this array must be:

Type: object
HorizontalPodAutoscalerCondition describes the state of a HorizontalPodAutoscaler at a certain point.

Type: string
lastTransitionTime is the last time the condition transitioned from one status to anotherSame definition as creationTimestamp

Type: string
message is a human-readable explanation containing details about the transition

Type: string
reason is the reason for the condition's last transition.

Type: string
status is the status of the condition (True, False, Unknown)

Type: string
type describes the current condition

Type: array
currentMetrics is the last read state of the metrics used by this autoscaler. No Additional Items

Each item of this array must be:

Type: object
MetricStatus describes the last-read state of a single metric.

Type: object
external refers to a global metric that is not associated with any Kubernetes object. It allows autoscaling based on information coming from components running outside of cluster (for example length of queue in cloud messaging service, or QPS from loadbalancer running outside of cluster).Same definition as oneOf_i160

Type: object
object refers to a metric describing a single kubernetes object (for example, hits-per-second on an Ingress object).

Type: object
current contains the current value for the given metricSame definition as current

Type: object
CrossVersionObjectReference contains enough information to let you identify the referred resource.Same definition as oneOf_i158

Type: object
metric identifies the target metric by name and selectorSame definition as metric

Type: object
pods refers to a metric describing each pod in the current scale target (for example, transactions-processed-per-second). The values will be averaged together before being compared to the target value.

Type: object
current contains the current value for the given metricSame definition as current

Type: object
metric identifies the target metric by name and selectorSame definition as metric

Type: object
resource refers to a resource metric (such as those specified in requests and limits) known to Kubernetes describing each pod in the current scale target (e.g. CPU or memory). Such metrics are built in to Kubernetes, and have special scaling options on top of those available to normal per-pod metrics using the "pods" source.

Type: object
current contains the current value for the given metricSame definition as current

Type: string
Name is the name of the resource in question.

Type: string
type is the type of metric source. It will be one of "Object", "Pods" or "Resource", each corresponds to a matching field in the object.

Type: integerFormat: int32
currentReplicas is current number of replicas of pods managed by this autoscaler, as last seen by the autoscaler.

Type: integerFormat: int32
desiredReplicas is the desired number of replicas of pods managed by this autoscaler, as last calculated by the autoscaler.

Type: string
lastScaleTime is the last time the HorizontalPodAutoscaler scaled the number of pods, used by the autoscaler to control how often the number of pods is changed.Same definition as creationTimestamp

Type: integerFormat: int64
observedGeneration is the most recent generation observed by this autoscaler.
Type: object
HorizontalPodAutoscalerCondition describes the state of a HorizontalPodAutoscaler at a certain point.Same definition as oneOf_i161_status_conditions_items
Type: object
HorizontalPodAutoscalerList is a list of horizontal pod autoscaler objects.

Type: string
APIVersion defines the versioned schema of this representation of an object. Servers should convert recognized schemas to the latest internal value, and may reject unrecognized values. More info: https://git.k8s.io/community/contributors/devel/api-conventions.md#resources

Type: array
items is the list of horizontal pod autoscaler objects. No Additional Items

Each item of this array must be:

Type: object
HorizontalPodAutoscaler is the configuration for a horizontal pod autoscaler, which automatically manages the replica count of any resource implementing the scale subresource based on the metrics specified.Same definition as oneOf_i161

Type: enum (of string)
Kind is a string value representing the REST resource this object represents. Servers may infer this from the endpoint the client submits requests to. Cannot be updated. In CamelCase. More info: https://git.k8s.io/community/contributors/devel/api-conventions.md#types-kinds

Must be one of:

  • "HorizontalPodAutoscalerList"

Type: object
metadata is the standard list metadata.Same definition as metadata
Type: object
HorizontalPodAutoscalerSpec describes the desired functionality of the HorizontalPodAutoscaler.Same definition as spec
Type: object
HorizontalPodAutoscalerStatus describes the current status of a horizontal pod autoscaler.Same definition as status
Type: object
MetricIdentifier defines the name and optionally selector for a metricSame definition as metric
Type: object
MetricSpec specifies how to scale based on a single metric (only `type` and one other matching field should be set at once).Same definition as oneOf_i161_spec_metrics_items
Type: object
MetricStatus describes the last-read state of a single metric.Same definition as oneOf_i161_status_currentMetrics_items
Type: object
MetricTarget defines the target value, average value, or average utilization of a specific metricSame definition as target
Type: object
MetricValueStatus holds the current value for a metricSame definition as current
Type: object
ObjectMetricSource indicates how to scale on a metric describing a kubernetes object (for example, hits-per-second on an Ingress object).Same definition as object
Type: object
ObjectMetricStatus indicates the current value of a metric describing a kubernetes object (for example, hits-per-second on an Ingress object).Same definition as object
Type: object
PodsMetricSource indicates how to scale on a metric describing each pod in the current scale target (for example, transactions-processed-per-second). The values will be averaged together before being compared to the target value.Same definition as pods
Type: object
PodsMetricStatus indicates the current value of a metric describing each pod in the current scale target (for example, transactions-processed-per-second).Same definition as pods
Type: object
ResourceMetricSource indicates how to scale on a resource metric known to Kubernetes, as specified in requests and limits, describing each pod in the current scale target (e.g. CPU or memory). The values will be averaged together before being compared to the target. Such metrics are built in to Kubernetes, and have special scaling options on top of those available to normal per-pod metrics using the "pods" source. Only one "target" type should be set.Same definition as resource
Type: object
ResourceMetricStatus indicates the current value of a resource metric known to Kubernetes, as specified in requests and limits, describing each pod in the current scale target (e.g. CPU or memory). Such metrics are built in to Kubernetes, and have special scaling options on top of those available to normal per-pod metrics using the "pods" source.Same definition as resource
Type: object
Job represents the configuration of a single job.

Type: string
APIVersion defines the versioned schema of this representation of an object. Servers should convert recognized schemas to the latest internal value, and may reject unrecognized values. More info: https://git.k8s.io/community/contributors/devel/api-conventions.md#resources

Type: enum (of string)
Kind is a string value representing the REST resource this object represents. Servers may infer this from the endpoint the client submits requests to. Cannot be updated. In CamelCase. More info: https://git.k8s.io/community/contributors/devel/api-conventions.md#types-kinds

Must be one of:

  • "Job"

Type: object
Standard object's metadata. More info: https://git.k8s.io/community/contributors/devel/api-conventions.md#metadataSame definition as metadata

Type: object
Specification of the desired behavior of a job. More info: https://git.k8s.io/community/contributors/devel/api-conventions.md#spec-and-status

Type: integerFormat: int64
Specifies the duration in seconds relative to the startTime that the job may be active before the system tries to terminate it; value must be positive integer

Type: integerFormat: int32
Specifies the number of retries before marking this job failed. Defaults to 6

Type: integerFormat: int32
Specifies the desired number of successfully finished pods the job should be run with. Setting to nil means that the success of any pod signals the success of all pods, and allows parallelism to have any positive value. Setting to 1 means that parallelism is limited to 1 and the success of that pod signals the success of the job. More info: https://kubernetes.io/docs/concepts/workloads/controllers/jobs-run-to-completion/

Type: boolean
manualSelector controls generation of pod labels and pod selectors. Leave `manualSelector` unset unless you are certain what you are doing. When false or unset, the system pick labels unique to this job and appends those labels to the pod template. When true, the user is responsible for picking unique labels and specifying the selector. Failure to pick a unique label may cause this and other jobs to not function correctly. However, You may see `manualSelector=true` in jobs that were created with the old `extensions/v1beta1` API. More info: https://kubernetes.io/docs/concepts/workloads/controllers/jobs-run-to-completion/#specifying-your-own-pod-selector

Type: integerFormat: int32
Specifies the maximum desired number of pods the job should run at any given time. The actual number of pods running in steady state will be less than this number when ((.spec.completions - .status.successful) < .spec.parallelism), i.e. when the work left to do is less than max parallelism. More info: https://kubernetes.io/docs/concepts/workloads/controllers/jobs-run-to-completion/

Type: object
A label query over pods that should match the pod count. Normally, the system sets this field for you. More info: https://kubernetes.io/docs/concepts/overview/working-with-objects/labels/#label-selectorsSame definition as namespaceSelector

Type: object
Describes the pod that will be created when executing a job. More info: https://kubernetes.io/docs/concepts/workloads/controllers/jobs-run-to-completion/Same definition as template

Type: integerFormat: int32
ttlSecondsAfterFinished limits the lifetime of a Job that has finished execution (either Complete or Failed). If this field is set, ttlSecondsAfterFinished after the Job finishes, it is eligible to be automatically deleted. When the Job is being deleted, its lifecycle guarantees (e.g. finalizers) will be honored. If this field is unset, the Job won't be automatically deleted. If this field is set to zero, the Job becomes eligible to be deleted immediately after it finishes. This field is alpha-level and is only honored by servers that enable the TTLAfterFinished feature.

Type: object
Current status of a job. More info: https://git.k8s.io/community/contributors/devel/api-conventions.md#spec-and-status

Type: integerFormat: int32
The number of actively running pods.

Type: string
Represents time when the job was completed. It is not guaranteed to be set in happens-before order across separate operations. It is represented in RFC3339 form and is in UTC.Same definition as creationTimestamp

Type: array
The latest available observations of an object's current state. More info: https://kubernetes.io/docs/concepts/workloads/controllers/jobs-run-to-completion/ No Additional Items

Each item of this array must be:

Type: object
JobCondition describes current state of a job.

Type: string
Last time the condition transit from one status to another.Same definition as creationTimestamp

Type: string
Human readable message indicating details about last transition.

Type: string
(brief) reason for the condition's last transition.

Type: string
Status of the condition, one of True, False, Unknown.

Type: string
Type of job condition, Complete or Failed.

Type: integerFormat: int32
The number of pods which reached phase Failed.

Type: string
Represents time when the job was acknowledged by the job controller. It is not guaranteed to be set in happens-before order across separate operations. It is represented in RFC3339 form and is in UTC.Same definition as creationTimestamp

Type: integerFormat: int32
The number of pods which reached phase Succeeded.
Type: object
JobCondition describes current state of a job.Same definition as oneOf_i177_status_conditions_items
Type: object
JobList is a collection of jobs.

Type: string
APIVersion defines the versioned schema of this representation of an object. Servers should convert recognized schemas to the latest internal value, and may reject unrecognized values. More info: https://git.k8s.io/community/contributors/devel/api-conventions.md#resources

Type: array
items is the list of Jobs. No Additional Items

Each item of this array must be:

Type: object
Job represents the configuration of a single job.Same definition as oneOf_i177

Type: enum (of string)
Kind is a string value representing the REST resource this object represents. Servers may infer this from the endpoint the client submits requests to. Cannot be updated. In CamelCase. More info: https://git.k8s.io/community/contributors/devel/api-conventions.md#types-kinds

Must be one of:

  • "JobList"

Type: object
Standard list metadata. More info: https://git.k8s.io/community/contributors/devel/api-conventions.md#metadataSame definition as metadata
Type: object
JobSpec describes how the job execution will look like.Same definition as spec
Type: object
JobStatus represents the current state of a Job.Same definition as status
Type: object
CronJob represents the configuration of a single cron job.

Type: string
APIVersion defines the versioned schema of this representation of an object. Servers should convert recognized schemas to the latest internal value, and may reject unrecognized values. More info: https://git.k8s.io/community/contributors/devel/api-conventions.md#resources

Type: enum (of string)
Kind is a string value representing the REST resource this object represents. Servers may infer this from the endpoint the client submits requests to. Cannot be updated. In CamelCase. More info: https://git.k8s.io/community/contributors/devel/api-conventions.md#types-kinds

Must be one of:

  • "CronJob"

Type: object
Standard object's metadata. More info: https://git.k8s.io/community/contributors/devel/api-conventions.md#metadataSame definition as metadata

Type: object
Specification of the desired behavior of a cron job, including the schedule. More info: https://git.k8s.io/community/contributors/devel/api-conventions.md#spec-and-status

Type: string
Specifies how to treat concurrent executions of a Job. Valid values are: - "Allow" (default): allows CronJobs to run concurrently; - "Forbid": forbids concurrent runs, skipping next run if previous run hasn't finished yet; - "Replace": cancels currently running job and replaces it with a new one

Type: integerFormat: int32
The number of failed finished jobs to retain. This is a pointer to distinguish between explicit zero and not specified. Defaults to 1.

Type: object
Specifies the job that will be created when executing a CronJob.

Type: object
Standard object's metadata of the jobs created from this template. More info: https://git.k8s.io/community/contributors/devel/api-conventions.md#metadataSame definition as metadata

Type: object
Specification of the desired behavior of the job. More info: https://git.k8s.io/community/contributors/devel/api-conventions.md#spec-and-statusSame definition as spec

Type: string
The schedule in Cron format, see https://en.wikipedia.org/wiki/Cron.

Type: integerFormat: int64
Optional deadline in seconds for starting the job if it misses scheduled time for any reason. Missed jobs executions will be counted as failed ones.

Type: integerFormat: int32
The number of successful finished jobs to retain. This is a pointer to distinguish between explicit zero and not specified. Defaults to 3.

Type: boolean
This flag tells the controller to suspend subsequent executions, it does not apply to already started executions. Defaults to false.

Type: object
Current status of a cron job. More info: https://git.k8s.io/community/contributors/devel/api-conventions.md#spec-and-status

Type: array
A list of pointers to currently running jobs. No Additional Items

Each item of this array must be:

Type: object
ObjectReference contains enough information to let you inspect or modify the referred object.

Type: string
API version of the referent.

Type: string
If referring to a piece of an object instead of an entire object, this string should contain a valid JSON/Go field access statement, such as desiredState.manifest.containers[2]. For example, if the object reference is to a container within a pod, this would take on a value like: "spec.containers{name}" (where "name" refers to the name of the container that triggered the event) or if no container name is specified "spec.containers[2]" (container with index 2 in this pod). This syntax is chosen only to have some well-defined way of referencing a part of an object.

Type: string
Kind of the referent. More info: https://git.k8s.io/community/contributors/devel/api-conventions.md#types-kinds

Type: string
Name of the referent. More info: https://kubernetes.io/docs/concepts/overview/working-with-objects/names/#names

Type: string
Namespace of the referent. More info: https://kubernetes.io/docs/concepts/overview/working-with-objects/namespaces/

Type: string
Specific resourceVersion to which this reference is made, if any. More info: https://git.k8s.io/community/contributors/devel/api-conventions.md#concurrency-control-and-consistency

Type: string
UID of the referent. More info: https://kubernetes.io/docs/concepts/overview/working-with-objects/names/#uids

Type: string
Information when was the last time the job was successfully scheduled.Same definition as creationTimestamp
Type: object
CronJobList is a collection of cron jobs.

Type: string
APIVersion defines the versioned schema of this representation of an object. Servers should convert recognized schemas to the latest internal value, and may reject unrecognized values. More info: https://git.k8s.io/community/contributors/devel/api-conventions.md#resources

Type: array
items is the list of CronJobs. No Additional Items

Each item of this array must be:

Type: object
CronJob represents the configuration of a single cron job.Same definition as oneOf_i182

Type: enum (of string)
Kind is a string value representing the REST resource this object represents. Servers may infer this from the endpoint the client submits requests to. Cannot be updated. In CamelCase. More info: https://git.k8s.io/community/contributors/devel/api-conventions.md#types-kinds

Must be one of:

  • "CronJobList"

Type: object
Standard list metadata. More info: https://git.k8s.io/community/contributors/devel/api-conventions.md#metadataSame definition as metadata
Type: object
CronJobSpec describes how the job execution will look like and when it will actually run.Same definition as spec
Type: object
CronJobStatus represents the current state of a cron job.Same definition as status
Type: object
JobTemplateSpec describes the data a Job should have when created from a templateSame definition as jobTemplate
Type: object
CronJob represents the configuration of a single cron job.

Type: string
APIVersion defines the versioned schema of this representation of an object. Servers should convert recognized schemas to the latest internal value, and may reject unrecognized values. More info: https://git.k8s.io/community/contributors/devel/api-conventions.md#resources

Type: enum (of string)
Kind is a string value representing the REST resource this object represents. Servers may infer this from the endpoint the client submits requests to. Cannot be updated. In CamelCase. More info: https://git.k8s.io/community/contributors/devel/api-conventions.md#types-kinds

Must be one of:

  • "CronJob"

Type: object
Standard object's metadata. More info: https://git.k8s.io/community/contributors/devel/api-conventions.md#metadataSame definition as metadata

Type: object
Specification of the desired behavior of a cron job, including the schedule. More info: https://git.k8s.io/community/contributors/devel/api-conventions.md#spec-and-status

Type: string
Specifies how to treat concurrent executions of a Job. Valid values are: - "Allow" (default): allows CronJobs to run concurrently; - "Forbid": forbids concurrent runs, skipping next run if previous run hasn't finished yet; - "Replace": cancels currently running job and replaces it with a new one

Type: integerFormat: int32
The number of failed finished jobs to retain. This is a pointer to distinguish between explicit zero and not specified.

Type: object
Specifies the job that will be created when executing a CronJob.

Type: object
Standard object's metadata of the jobs created from this template. More info: https://git.k8s.io/community/contributors/devel/api-conventions.md#metadataSame definition as metadata

Type: object
Specification of the desired behavior of the job. More info: https://git.k8s.io/community/contributors/devel/api-conventions.md#spec-and-statusSame definition as spec

Type: string
The schedule in Cron format, see https://en.wikipedia.org/wiki/Cron.

Type: integerFormat: int64
Optional deadline in seconds for starting the job if it misses scheduled time for any reason. Missed jobs executions will be counted as failed ones.

Type: integerFormat: int32
The number of successful finished jobs to retain. This is a pointer to distinguish between explicit zero and not specified.

Type: boolean
This flag tells the controller to suspend subsequent executions, it does not apply to already started executions. Defaults to false.

Type: object
Current status of a cron job. More info: https://git.k8s.io/community/contributors/devel/api-conventions.md#spec-and-status

Type: array
A list of pointers to currently running jobs. No Additional Items

Each item of this array must be:

Type: object
ObjectReference contains enough information to let you inspect or modify the referred object.Same definition as oneOf_i182_status_active_items

Type: string
Information when was the last time the job was successfully scheduled.Same definition as creationTimestamp
Type: object
CronJobList is a collection of cron jobs.

Type: string
APIVersion defines the versioned schema of this representation of an object. Servers should convert recognized schemas to the latest internal value, and may reject unrecognized values. More info: https://git.k8s.io/community/contributors/devel/api-conventions.md#resources

Type: array
items is the list of CronJobs. No Additional Items

Each item of this array must be:

Type: object
CronJob represents the configuration of a single cron job.Same definition as oneOf_i187

Type: enum (of string)
Kind is a string value representing the REST resource this object represents. Servers may infer this from the endpoint the client submits requests to. Cannot be updated. In CamelCase. More info: https://git.k8s.io/community/contributors/devel/api-conventions.md#types-kinds

Must be one of:

  • "CronJobList"

Type: object
Standard list metadata. More info: https://git.k8s.io/community/contributors/devel/api-conventions.md#metadataSame definition as metadata
Type: object
CronJobSpec describes how the job execution will look like and when it will actually run.Same definition as spec
Type: object
CronJobStatus represents the current state of a cron job.Same definition as status
Type: object
JobTemplateSpec describes the data a Job should have when created from a templateSame definition as jobTemplate
Type: object
Describes a certificate signing request

Type: string
APIVersion defines the versioned schema of this representation of an object. Servers should convert recognized schemas to the latest internal value, and may reject unrecognized values. More info: https://git.k8s.io/community/contributors/devel/api-conventions.md#resources

Type: enum (of string)
Kind is a string value representing the REST resource this object represents. Servers may infer this from the endpoint the client submits requests to. Cannot be updated. In CamelCase. More info: https://git.k8s.io/community/contributors/devel/api-conventions.md#types-kinds

Must be one of:

  • "CertificateSigningRequest"

Type: object
ObjectMeta is metadata that all persisted resources must have, which includes all objects users must create.Same definition as metadata

Type: object
The certificate request itself and any additional information.

Type: object
Extra information about the requesting user. See user.Info interface for details.

Each additional property must conform to the following schema

Type: array of string
No Additional Items

Each item of this array must be:

Type: array of string
Group information about the requesting user. See user.Info interface for details. No Additional Items

Each item of this array must be:

Type: stringFormat: byte
Base64-encoded PKCS#10 CSR data

Type: string
UID information about the requesting user. See user.Info interface for details.

Type: array of string
allowedUsages specifies a set of usage contexts the key will be valid for. See: https://tools.ietf.org/html/rfc5280#section-4.2.1.3 https://tools.ietf.org/html/rfc5280#section-4.2.1.12 No Additional Items

Each item of this array must be:

Type: string
Information about the requesting user. See user.Info interface for details.

Type: object
Derived information about the request.

Type: stringFormat: byte
If request was approved, the controller will place the issued certificate here.

Type: array
Conditions applied to the request, such as approval or denial. No Additional Items

Each item of this array must be:

Type: object

Type: string
timestamp for the last update to this conditionSame definition as creationTimestamp

Type: string
human readable message with details about the request state

Type: string
brief reason for the request state

Type: string
request approval state, currently Approved or Denied.
Type: object

Type: string
APIVersion defines the versioned schema of this representation of an object. Servers should convert recognized schemas to the latest internal value, and may reject unrecognized values. More info: https://git.k8s.io/community/contributors/devel/api-conventions.md#resources

Type: array
No Additional Items

Each item of this array must be:

Type: enum (of string)
Kind is a string value representing the REST resource this object represents. Servers may infer this from the endpoint the client submits requests to. Cannot be updated. In CamelCase. More info: https://git.k8s.io/community/contributors/devel/api-conventions.md#types-kinds

Must be one of:

  • "CertificateSigningRequestList"

Type: object
ListMeta describes metadata that synthetic resources must have, including lists and various status objects. A resource may have only one of {ObjectMeta, ListMeta}.Same definition as metadata
Type: object
This information is immutable after the request is created. Only the Request and Usages fields can be set on creation, other fields are derived by Kubernetes and cannot be modified by users.Same definition as spec
Type: object
Lease defines a lease concept.

Type: string
APIVersion defines the versioned schema of this representation of an object. Servers should convert recognized schemas to the latest internal value, and may reject unrecognized values. More info: https://git.k8s.io/community/contributors/devel/api-conventions.md#resources

Type: enum (of string)
Kind is a string value representing the REST resource this object represents. Servers may infer this from the endpoint the client submits requests to. Cannot be updated. In CamelCase. More info: https://git.k8s.io/community/contributors/devel/api-conventions.md#types-kinds

Must be one of:

  • "Lease"

Type: object
More info: https://git.k8s.io/community/contributors/devel/api-conventions.md#metadataSame definition as metadata

Type: object
Specification of the Lease. More info: https://git.k8s.io/community/contributors/devel/api-conventions.md#spec-and-status

Type: string
acquireTime is a time when the current lease was acquired.

Type: string
holderIdentity contains the identity of the holder of a current lease.

Type: integerFormat: int32
leaseDurationSeconds is a duration that candidates for a lease need to wait to force acquire it. This is measure against time of last observed RenewTime.

Type: integerFormat: int32
leaseTransitions is the number of transitions of a lease between holders.

Type: string
renewTime is a time when the current holder of a lease has last updated the lease.Same definition as acquireTime
Type: object
LeaseList is a list of Lease objects.

Type: string
APIVersion defines the versioned schema of this representation of an object. Servers should convert recognized schemas to the latest internal value, and may reject unrecognized values. More info: https://git.k8s.io/community/contributors/devel/api-conventions.md#resources

Type: array
Items is a list of schema objects. No Additional Items

Each item of this array must be:

Type: enum (of string)
Kind is a string value representing the REST resource this object represents. Servers may infer this from the endpoint the client submits requests to. Cannot be updated. In CamelCase. More info: https://git.k8s.io/community/contributors/devel/api-conventions.md#types-kinds

Must be one of:

  • "LeaseList"

Type: object
Standard list metadata. More info: https://git.k8s.io/community/contributors/devel/api-conventions.md#metadataSame definition as metadata
Type: object
LeaseSpec is a specification of a Lease.Same definition as spec
Type: object
Represents a Persistent Disk resource in AWS. An AWS EBS disk must exist before mounting to a container. The disk must also be in the same AWS zone as the kubelet. An AWS EBS disk can only be mounted as read/write once. AWS EBS volumes support ownership management and SELinux relabeling.Same definition as awsElasticBlockStore
Type: object
Affinity is a group of affinity scheduling rules.Same definition as affinity
Type: object
AttachedVolume describes a volume attached to a node

Type: string
DevicePath represents the device path where the volume should be available

Type: string
Name of the attached volume
Type: object
AzureDisk represents an Azure Data Disk mount on the host and bind mount to the pod.Same definition as azureDisk
Type: object
AzureFile represents an Azure File Service mount on the host and bind mount to the pod.

Type: boolean
Defaults to false (read/write). ReadOnly here will force the ReadOnly setting in VolumeMounts.

Type: string
the name of secret that contains Azure Storage Account Name and Key

Type: string
the namespace of the secret that contains Azure Storage Account Name and Key default is the same as the Pod

Type: string
Share Name
Type: object
AzureFile represents an Azure File Service mount on the host and bind mount to the pod.Same definition as azureFile
Type: object
Binding ties one object to another; for example, a pod is bound to a node by a scheduler. Deprecated in 1.7, please use the bindings subresource of pods instead.

Type: string
APIVersion defines the versioned schema of this representation of an object. Servers should convert recognized schemas to the latest internal value, and may reject unrecognized values. More info: https://git.k8s.io/community/contributors/devel/api-conventions.md#resources

Type: enum (of string)
Kind is a string value representing the REST resource this object represents. Servers may infer this from the endpoint the client submits requests to. Cannot be updated. In CamelCase. More info: https://git.k8s.io/community/contributors/devel/api-conventions.md#types-kinds

Must be one of:

  • "Binding"

Type: object
Standard object's metadata. More info: https://git.k8s.io/community/contributors/devel/api-conventions.md#metadataSame definition as metadata

Type: object
The target object that you want to bind to the standard object.Same definition as oneOf_i182_status_active_items
Type: object
Represents storage that is managed by an external CSI volume driver (Beta feature)

Type: object
ControllerPublishSecretRef is a reference to the secret object containing sensitive information to pass to the CSI driver to complete the CSI ControllerPublishVolume and ControllerUnpublishVolume calls. This field is optional, and may be empty if no secret is required. If the secret object contains more than one secret, all secrets are passed.

Type: string
Name is unique within a namespace to reference a secret resource.

Type: string
Namespace defines the space within which the secret name must be unique.

Type: string
Driver is the name of the driver to use for this volume. Required.

Type: string
Filesystem type to mount. Must be a filesystem type supported by the host operating system. Ex. "ext4", "xfs", "ntfs".

Type: object
NodePublishSecretRef is a reference to the secret object containing sensitive information to pass to the CSI driver to complete the CSI NodePublishVolume and NodeUnpublishVolume calls. This field is optional, and may be empty if no secret is required. If the secret object contains more than one secret, all secrets are passed.Same definition as controllerPublishSecretRef

Type: object
NodeStageSecretRef is a reference to the secret object containing sensitive information to pass to the CSI driver to complete the CSI NodeStageVolume and NodeStageVolume and NodeUnstageVolume calls. This field is optional, and may be empty if no secret is required. If the secret object contains more than one secret, all secrets are passed.Same definition as controllerPublishSecretRef

Type: boolean
Optional: The value to pass to ControllerPublishVolumeRequest. Defaults to false (read/write).

Type: object
Attributes of the volume to publish.

Each additional property must conform to the following schema

Type: string

Type: string
VolumeHandle is the unique volume name returned by the CSI volume plugin’s CreateVolume to refer to the volume on all subsequent calls. Required.
Type: object
Adds and removes POSIX capabilities from running containers.Same definition as capabilities
Type: object
Represents a Ceph Filesystem mount that lasts the lifetime of a pod Cephfs volumes do not support ownership management or SELinux relabeling.

Type: array of string
Required: Monitors is a collection of Ceph monitors More info: https://releases.k8s.io/HEAD/examples/volumes/cephfs/README.md#how-to-use-it No Additional Items

Each item of this array must be:

Type: string
Optional: Used as the mounted root, rather than the full Ceph tree, default is /

Type: boolean
Optional: Defaults to false (read/write). ReadOnly here will force the ReadOnly setting in VolumeMounts. More info: https://releases.k8s.io/HEAD/examples/volumes/cephfs/README.md#how-to-use-it

Type: string
Optional: SecretFile is the path to key ring for User, default is /etc/ceph/user.secret More info: https://releases.k8s.io/HEAD/examples/volumes/cephfs/README.md#how-to-use-it

Type: object
Optional: SecretRef is reference to the authentication secret for User, default is empty. More info: https://releases.k8s.io/HEAD/examples/volumes/cephfs/README.md#how-to-use-itSame definition as controllerPublishSecretRef

Type: string
Optional: User is the rados user name, default is admin More info: https://releases.k8s.io/HEAD/examples/volumes/cephfs/README.md#how-to-use-it
Type: object
Represents a Ceph Filesystem mount that lasts the lifetime of a pod Cephfs volumes do not support ownership management or SELinux relabeling.Same definition as cephfs
Type: object
Represents a cinder volume resource in Openstack. A Cinder volume must exist before mounting to a container. The volume must also be in the same region as the kubelet. Cinder volumes support ownership management and SELinux relabeling.

Type: string
Filesystem type to mount. Must be a filesystem type supported by the host operating system. Examples: "ext4", "xfs", "ntfs". Implicitly inferred to be "ext4" if unspecified. More info: https://releases.k8s.io/HEAD/examples/mysql-cinder-pd/README.md

Type: boolean
Optional: Defaults to false (read/write). ReadOnly here will force the ReadOnly setting in VolumeMounts. More info: https://releases.k8s.io/HEAD/examples/mysql-cinder-pd/README.md

Type: object
Optional: points to a secret object containing parameters used to connect to OpenStack.Same definition as controllerPublishSecretRef

Type: string
volume id used to identify the volume in cinder More info: https://releases.k8s.io/HEAD/examples/mysql-cinder-pd/README.md
Type: object
Represents a cinder volume resource in Openstack. A Cinder volume must exist before mounting to a container. The volume must also be in the same region as the kubelet. Cinder volumes support ownership management and SELinux relabeling.Same definition as cinder
Type: object
ClientIPConfig represents the configurations of Client IP based session affinity.

Type: integerFormat: int32
timeoutSeconds specifies the seconds of ClientIP type session sticky time. The value must be >0 && <=86400(for 1 day) if ServiceAffinity == "ClientIP". Default value is 10800(for 3 hours).
Type: object
Information about the condition of a component.

Type: string
Condition error code for a component. For example, a health check error code.

Type: string
Message about the condition for a component. For example, information about a health check.

Type: string
Status of the condition for a component. Valid values for "Healthy": "True", "False", or "Unknown".

Type: string
Type of condition for a component. Valid value: "Healthy"
Type: object
ComponentStatus (and ComponentStatusList) holds the cluster validation info.

Type: string
APIVersion defines the versioned schema of this representation of an object. Servers should convert recognized schemas to the latest internal value, and may reject unrecognized values. More info: https://git.k8s.io/community/contributors/devel/api-conventions.md#resources

Type: array
List of component conditions observed No Additional Items

Each item of this array must be:

Type: object
Information about the condition of a component.Same definition as oneOf_i214

Type: enum (of string)
Kind is a string value representing the REST resource this object represents. Servers may infer this from the endpoint the client submits requests to. Cannot be updated. In CamelCase. More info: https://git.k8s.io/community/contributors/devel/api-conventions.md#types-kinds

Must be one of:

  • "ComponentStatus"

Type: object
Standard object's metadata. More info: https://git.k8s.io/community/contributors/devel/api-conventions.md#metadataSame definition as metadata
Type: object
Status of all the conditions for the component as a list of ComponentStatus objects.

Type: string
APIVersion defines the versioned schema of this representation of an object. Servers should convert recognized schemas to the latest internal value, and may reject unrecognized values. More info: https://git.k8s.io/community/contributors/devel/api-conventions.md#resources

Type: array
List of ComponentStatus objects. No Additional Items

Each item of this array must be:

Type: object
ComponentStatus (and ComponentStatusList) holds the cluster validation info.Same definition as oneOf_i215

Type: enum (of string)
Kind is a string value representing the REST resource this object represents. Servers may infer this from the endpoint the client submits requests to. Cannot be updated. In CamelCase. More info: https://git.k8s.io/community/contributors/devel/api-conventions.md#types-kinds

Must be one of:

  • "ComponentStatusList"

Type: object
Standard list metadata. More info: https://git.k8s.io/community/contributors/devel/api-conventions.md#types-kindsSame definition as metadata
Type: object
ConfigMap holds configuration data for pods to consume.

Type: string
APIVersion defines the versioned schema of this representation of an object. Servers should convert recognized schemas to the latest internal value, and may reject unrecognized values. More info: https://git.k8s.io/community/contributors/devel/api-conventions.md#resources

Type: object
BinaryData contains the binary data. Each key must consist of alphanumeric characters, '-', '_' or '.'. BinaryData can contain byte sequences that are not in the UTF-8 range. The keys stored in BinaryData must not overlap with the ones in the Data field, this is enforced during validation process. Using this field will require 1.10+ apiserver and kubelet.

Each additional property must conform to the following schema

Type: stringFormat: byte

Type: object
Data contains the configuration data. Each key must consist of alphanumeric characters, '-', '_' or '.'. Values with non-UTF-8 byte sequences must use the BinaryData field. The keys stored in Data must not overlap with the keys in the BinaryData field, this is enforced during validation process.

Each additional property must conform to the following schema

Type: string

Type: enum (of string)
Kind is a string value representing the REST resource this object represents. Servers may infer this from the endpoint the client submits requests to. Cannot be updated. In CamelCase. More info: https://git.k8s.io/community/contributors/devel/api-conventions.md#types-kinds

Must be one of:

  • "ConfigMap"

Type: object
Standard object's metadata. More info: https://git.k8s.io/community/contributors/devel/api-conventions.md#metadataSame definition as metadata
Type: object
ConfigMapEnvSource selects a ConfigMap to populate the environment variables with. The contents of the target ConfigMap's Data field will represent the key-value pairs as environment variables.Same definition as configMapRef
Type: object
Selects a key from a ConfigMap.Same definition as configMapKeyRef
Type: object
ConfigMapList is a resource containing a list of ConfigMap objects.

Type: string
APIVersion defines the versioned schema of this representation of an object. Servers should convert recognized schemas to the latest internal value, and may reject unrecognized values. More info: https://git.k8s.io/community/contributors/devel/api-conventions.md#resources

Type: array
Items is the list of ConfigMaps. No Additional Items

Each item of this array must be:

Type: object
ConfigMap holds configuration data for pods to consume.Same definition as oneOf_i217

Type: enum (of string)
Kind is a string value representing the REST resource this object represents. Servers may infer this from the endpoint the client submits requests to. Cannot be updated. In CamelCase. More info: https://git.k8s.io/community/contributors/devel/api-conventions.md#types-kinds

Must be one of:

  • "ConfigMapList"

Type: object
More info: https://git.k8s.io/community/contributors/devel/api-conventions.md#metadataSame definition as metadata
Type: object
ConfigMapNodeConfigSource contains the information to reference a ConfigMap as a config source for the Node.

Type: string
KubeletConfigKey declares which key of the referenced ConfigMap corresponds to the KubeletConfiguration structure This field is required in all cases.

Type: string
Name is the metadata.name of the referenced ConfigMap. This field is required in all cases.

Type: string
Namespace is the metadata.namespace of the referenced ConfigMap. This field is required in all cases.

Type: string
ResourceVersion is the metadata.ResourceVersion of the referenced ConfigMap. This field is forbidden in Node.Spec, and required in Node.Status.

Type: string
UID is the metadata.UID of the referenced ConfigMap. This field is forbidden in Node.Spec, and required in Node.Status.
Type: object
Adapts a ConfigMap into a projected volume. The contents of the target ConfigMap's Data field will be presented in a projected volume as files using the keys in the Data field as the file names, unless the items element is populated with specific mappings of keys to paths. Note that this is identical to a configmap volume source without the default mode.Same definition as configMap
Type: object
Adapts a ConfigMap into a volume. The contents of the target ConfigMap's Data field will be presented in a volume as files using the keys in the Data field as the file names, unless the items element is populated with specific mappings of keys to paths. ConfigMap volumes support ownership management and SELinux relabeling.Same definition as configMap
Type: object
A single application container that you want to run within a pod.Same definition as oneOf_i14_spec_template_spec_containers_items
Type: object
Describe a container image

Type: array of string
Names by which this image is known. e.g. ["k8s.gcr.io/hyperkube:v1.0.7", "dockerhub.io/google_containers/hyperkube:v1.0.7"] No Additional Items

Each item of this array must be:

Type: string

Type: integerFormat: int64
The size of the image in bytes.
Type: object
ContainerPort represents a network port in a single container.Same definition as oneOf_i14_spec_template_spec_containers_items_ports_items
Type: object
ContainerState holds a possible state of container. Only one of its members may be specified. If none of them is specified, the default one is ContainerStateWaiting.

Type: object
Details about a running container

Type: string
Time at which the container was last (re-)startedSame definition as creationTimestamp

Type: object
Details about a terminated container

Type: string
Container's ID in the format 'docker://'

Type: integerFormat: int32
Exit status from the last termination of the container

Type: string
Time at which the container last terminatedSame definition as creationTimestamp

Type: string
Message regarding the last termination of the container

Type: string
(brief) reason from the last termination of the container

Type: integerFormat: int32
Signal from the last termination of the container

Type: string
Time at which previous execution of the container startedSame definition as creationTimestamp

Type: object
Details about a waiting container

Type: string
Message regarding why the container is not yet running.

Type: string
(brief) reason the container is not yet running.
Type: object
ContainerStateRunning is a running state of a container.Same definition as running
Type: object
ContainerStateTerminated is a terminated state of a container.Same definition as terminated
Type: object
ContainerStateWaiting is a waiting state of a container.Same definition as waiting
Type: object
ContainerStatus contains details for the current status of this container.

Type: string
Container's ID in the format 'docker://'.

Type: string
The image the container is running. More info: https://kubernetes.io/docs/concepts/containers/images

Type: string
ImageID of the container's image.

Type: object
Details about the container's last termination condition.Same definition as oneOf_i227

Type: string
This must be a DNS_LABEL. Each container in a pod must have a unique name. Cannot be updated.

Type: boolean
Specifies whether the container has passed its readiness probe.

Type: integerFormat: int32
The number of times the container has been restarted, currently based on the number of dead containers that have not yet been removed. Note that this is calculated from dead containers. But those containers are subject to garbage collection. This value will get capped at 5 by GC.

Type: object
Details about the container's current condition.Same definition as oneOf_i227
Type: object
DaemonEndpoint contains information about a single Daemon endpoint.

Type: integerFormat: int32
Port number of the given endpoint.
Type: object
Represents downward API info for projecting into a projected volume. Note that this is identical to a downwardAPI volume source without the default mode.Same definition as downwardAPI
Type: object
DownwardAPIVolumeFile represents information to create the file containing the pod fieldSame definition as oneOf_i14_spec_template_spec_volumes_items_downwardAPI_items_items
Type: object
DownwardAPIVolumeSource represents a volume containing downward API info. Downward API volumes support ownership management and SELinux relabeling.Same definition as downwardAPI
Type: object
Represents an empty directory for a pod. Empty directory volumes support ownership management and SELinux relabeling.Same definition as emptyDir
Type: object
EndpointAddress is a tuple that describes single IP address.

Type: string
The Hostname of this endpoint

Type: string
The IP of this endpoint. May not be loopback (127.0.0.0/8), link-local (169.254.0.0/16), or link-local multicast ((224.0.0.0/24). IPv6 is also accepted but not fully supported on all platforms. Also, certain kubernetes components, like kube-proxy, are not IPv6 ready.

Type: string
Optional: Node hosting this endpoint. This can be used to determine endpoints local to a node.

Type: object
Reference to object providing the endpoint.Same definition as oneOf_i182_status_active_items
Type: object
EndpointPort is a tuple that describes a single port.

Type: string
The name of this port (corresponds to ServicePort.Name). Must be a DNS_LABEL. Optional only if one port is defined.

Type: integerFormat: int32
The port number of the endpoint.

Type: string
The IP protocol for this port. Must be UDP, TCP, or SCTP. Default is TCP.
Type: object
EndpointSubset is a group of addresses with a common set of ports. The expanded set of endpoints is the Cartesian product of Addresses x Ports. For example, given: { Addresses: [{"ip": "10.10.1.1"}, {"ip": "10.10.2.2"}], Ports: [{"name": "a", "port": 8675}, {"name": "b", "port": 309}] } The resulting set of endpoints can be viewed as: a: [ 10.10.1.1:8675, 10.10.2.2:8675 ], b: [ 10.10.1.1:309, 10.10.2.2:309 ]

Type: array
IP addresses which offer the related ports that are marked as ready. These endpoints should be considered safe for load balancers and clients to utilize. No Additional Items

Each item of this array must be:

Type: object
EndpointAddress is a tuple that describes single IP address.Same definition as oneOf_i237

Type: array
IP addresses which offer the related ports but are not currently marked as ready because they have not yet finished starting, have recently failed a readiness check, or have recently failed a liveness check. No Additional Items

Each item of this array must be:

Type: object
EndpointAddress is a tuple that describes single IP address.Same definition as oneOf_i237

Type: array
Port numbers available on the related IP addresses. No Additional Items

Each item of this array must be:

Type: object
EndpointPort is a tuple that describes a single port.Same definition as oneOf_i238
Type: object
Endpoints is a collection of endpoints that implement the actual service. Example: Name: "mysvc", Subsets: [ { Addresses: [{"ip": "10.10.1.1"}, {"ip": "10.10.2.2"}], Ports: [{"name": "a", "port": 8675}, {"name": "b", "port": 309}] }, { Addresses: [{"ip": "10.10.3.3"}], Ports: [{"name": "a", "port": 93}, {"name": "b", "port": 76}] }, ]

Type: string
APIVersion defines the versioned schema of this representation of an object. Servers should convert recognized schemas to the latest internal value, and may reject unrecognized values. More info: https://git.k8s.io/community/contributors/devel/api-conventions.md#resources

Type: enum (of string)
Kind is a string value representing the REST resource this object represents. Servers may infer this from the endpoint the client submits requests to. Cannot be updated. In CamelCase. More info: https://git.k8s.io/community/contributors/devel/api-conventions.md#types-kinds

Must be one of:

  • "Endpoints"

Type: object
Standard object's metadata. More info: https://git.k8s.io/community/contributors/devel/api-conventions.md#metadataSame definition as metadata

Type: array
The set of all endpoints is the union of all subsets. Addresses are placed into subsets according to the IPs they share. A single address with multiple ports, some of which are ready and some of which are not (because they come from different containers) will result in the address being displayed in different subsets for the different ports. No address will appear in both Addresses and NotReadyAddresses in the same subset. Sets of addresses and ports that comprise a service. No Additional Items

Each item of this array must be:

Type: object
EndpointSubset is a group of addresses with a common set of ports. The expanded set of endpoints is the Cartesian product of Addresses x Ports. For example, given: { Addresses: [{"ip": "10.10.1.1"}, {"ip": "10.10.2.2"}], Ports: [{"name": "a", "port": 8675}, {"name": "b", "port": 309}] } The resulting set of endpoints can be viewed as: a: [ 10.10.1.1:8675, 10.10.2.2:8675 ], b: [ 10.10.1.1:309, 10.10.2.2:309 ]
Same definition as oneOf_i239
Type: object
EndpointsList is a list of endpoints.

Type: string
APIVersion defines the versioned schema of this representation of an object. Servers should convert recognized schemas to the latest internal value, and may reject unrecognized values. More info: https://git.k8s.io/community/contributors/devel/api-conventions.md#resources

Type: array
List of endpoints. No Additional Items

Each item of this array must be:

Type: object
Endpoints is a collection of endpoints that implement the actual service. Example: Name: "mysvc", Subsets: [ { Addresses: [{"ip": "10.10.1.1"}, {"ip": "10.10.2.2"}], Ports: [{"name": "a", "port": 8675}, {"name": "b", "port": 309}] }, { Addresses: [{"ip": "10.10.3.3"}], Ports: [{"name": "a", "port": 93}, {"name": "b", "port": 76}] }, ]
Same definition as oneOf_i240

Type: enum (of string)
Kind is a string value representing the REST resource this object represents. Servers may infer this from the endpoint the client submits requests to. Cannot be updated. In CamelCase. More info: https://git.k8s.io/community/contributors/devel/api-conventions.md#types-kinds

Must be one of:

  • "EndpointsList"

Type: object
Standard list metadata. More info: https://git.k8s.io/community/contributors/devel/api-conventions.md#types-kindsSame definition as metadata
Type: object
EnvFromSource represents the source of a set of ConfigMapsSame definition as oneOf_i14_spec_template_spec_containers_items_envFrom_items
Type: object
EnvVar represents an environment variable present in a Container.Same definition as oneOf_i14_spec_template_spec_containers_items_env_items
Type: object
EnvVarSource represents a source for the value of an EnvVar.Same definition as valueFrom
Type: object
Event is a report of an event somewhere in the cluster.

Type: string
What action was taken/failed regarding to the Regarding object.

Type: string
APIVersion defines the versioned schema of this representation of an object. Servers should convert recognized schemas to the latest internal value, and may reject unrecognized values. More info: https://git.k8s.io/community/contributors/devel/api-conventions.md#resources

Type: integerFormat: int32
The number of times this event has occurred.

Type: string
Time when this Event was first observed.Same definition as acquireTime

Type: string
The time at which the event was first recorded. (Time of server receipt is in TypeMeta.)Same definition as creationTimestamp

Type: object
The object that this event is about.Same definition as oneOf_i182_status_active_items

Type: enum (of string)
Kind is a string value representing the REST resource this object represents. Servers may infer this from the endpoint the client submits requests to. Cannot be updated. In CamelCase. More info: https://git.k8s.io/community/contributors/devel/api-conventions.md#types-kinds

Must be one of:

  • "Event"

Type: string
The time at which the most recent occurrence of this event was recorded.Same definition as creationTimestamp

Type: string
A human-readable description of the status of this operation.

Type: object
Standard object's metadata. More info: https://git.k8s.io/community/contributors/devel/api-conventions.md#metadataSame definition as metadata

Type: string
This should be a short, machine understandable string that gives the reason for the transition into the object's current status.

Type: string
Name of the controller that emitted this Event, e.g. `kubernetes.io/kubelet`.

Type: string
ID of the controller instance, e.g. `kubelet-xyzf`.

Type: object
Data about the Event series this event represents or nil if it's a singleton Event.

Type: integerFormat: int32
Number of occurrences in this series up to the last heartbeat time

Type: string
Time of the last occurrence observedSame definition as acquireTime

Type: string
State of this Series: Ongoing or Finished

Type: object
The component reporting this event. Should be a short machine understandable string.

Type: string
Component from which the event is generated.

Type: string
Node name on which the event is generated.

Type: string
Type of this event (Normal, Warning), new types could be added in the future
Type: object
EventList is a list of events.

Type: string
APIVersion defines the versioned schema of this representation of an object. Servers should convert recognized schemas to the latest internal value, and may reject unrecognized values. More info: https://git.k8s.io/community/contributors/devel/api-conventions.md#resources

Type: array
List of events No Additional Items

Each item of this array must be:

Type: object
Event is a report of an event somewhere in the cluster.Same definition as oneOf_i245

Type: enum (of string)
Kind is a string value representing the REST resource this object represents. Servers may infer this from the endpoint the client submits requests to. Cannot be updated. In CamelCase. More info: https://git.k8s.io/community/contributors/devel/api-conventions.md#types-kinds

Must be one of:

  • "EventList"

Type: object
Standard list metadata. More info: https://git.k8s.io/community/contributors/devel/api-conventions.md#types-kindsSame definition as metadata
Type: object
EventSeries contain information on series of events, i.e. thing that was/is happening continuously for some time.Same definition as series
Type: object
EventSource contains information for an event.Same definition as source
Type: object
ExecAction describes a "run in container" action.Same definition as exec
Type: object
Represents a Fibre Channel volume. Fibre Channel volumes can only be mounted as read/write once. Fibre Channel volumes support ownership management and SELinux relabeling.Same definition as fc
Type: object
FlexPersistentVolumeSource represents a generic persistent volume resource that is provisioned/attached using an exec based plugin.

Type: string
Driver is the name of the driver to use for this volume.

Type: string
Filesystem type to mount. Must be a filesystem type supported by the host operating system. Ex. "ext4", "xfs", "ntfs". The default filesystem depends on FlexVolume script.

Type: object
Optional: Extra command options if any.

Each additional property must conform to the following schema

Type: string

Type: boolean
Optional: Defaults to false (read/write). ReadOnly here will force the ReadOnly setting in VolumeMounts.

Type: object
Optional: SecretRef is reference to the secret object containing sensitive information to pass to the plugin scripts. This may be empty if no secret object is specified. If the secret object contains more than one secret, all secrets are passed to the plugin scripts.Same definition as controllerPublishSecretRef
Type: object
FlexVolume represents a generic volume resource that is provisioned/attached using an exec based plugin.Same definition as flexVolume
Type: object
Represents a Flocker volume mounted by the Flocker agent. One and only one of datasetName and datasetUUID should be set. Flocker volumes do not support ownership management or SELinux relabeling.Same definition as flocker
Type: object
Represents a Persistent Disk resource in Google Compute Engine. A GCE PD must exist before mounting to a container. The disk must also be in the same GCE project and zone as the kubelet. A GCE PD can only be mounted as read/write once or read-only many times. GCE PDs support ownership management and SELinux relabeling.Same definition as gcePersistentDisk
Type: object
Represents a volume that is populated with the contents of a git repository. Git repo volumes do not support ownership management. Git repo volumes support SELinux relabeling. DEPRECATED: GitRepo is deprecated. To provision a container with a git repo, mount an EmptyDir into an InitContainer that clones the repo using git, then mount the EmptyDir into the Pod's container.Same definition as gitRepo
Type: object
Represents a Glusterfs mount that lasts the lifetime of a pod. Glusterfs volumes do not support ownership management or SELinux relabeling.

Type: string
EndpointsName is the endpoint name that details Glusterfs topology. More info: https://releases.k8s.io/HEAD/examples/volumes/glusterfs/README.md#create-a-pod

Type: string
EndpointsNamespace is the namespace that contains Glusterfs endpoint. If this field is empty, the EndpointNamespace defaults to the same namespace as the bound PVC. More info: https://releases.k8s.io/HEAD/examples/volumes/glusterfs/README.md#create-a-pod

Type: string
Path is the Glusterfs volume path. More info: https://releases.k8s.io/HEAD/examples/volumes/glusterfs/README.md#create-a-pod

Type: boolean
ReadOnly here will force the Glusterfs volume to be mounted with read-only permissions. Defaults to false. More info: https://releases.k8s.io/HEAD/examples/volumes/glusterfs/README.md#create-a-pod
Type: object
Represents a Glusterfs mount that lasts the lifetime of a pod. Glusterfs volumes do not support ownership management or SELinux relabeling.Same definition as glusterfs
Type: object
HTTPGetAction describes an action based on HTTP Get requests.Same definition as httpGet
Type: object
Handler defines a specific action that should be takenSame definition as postStart
Type: object
HostAlias holds the mapping between IP and hostnames that will be injected as an entry in the pod's hosts file.Same definition as oneOf_i14_spec_template_spec_hostAliases_items
Type: object
Represents a host path mapped into a pod. Host path volumes do not support ownership management or SELinux relabeling.Same definition as hostPath
Type: object
ISCSIPersistentVolumeSource represents an ISCSI disk. ISCSI volumes can only be mounted as read/write once. ISCSI volumes support ownership management and SELinux relabeling.

Type: boolean
whether support iSCSI Discovery CHAP authentication

Type: boolean
whether support iSCSI Session CHAP authentication

Type: string
Filesystem type of the volume that you want to mount. Tip: Ensure that the filesystem type is supported by the host operating system. Examples: "ext4", "xfs", "ntfs". Implicitly inferred to be "ext4" if unspecified. More info: https://kubernetes.io/docs/concepts/storage/volumes#iscsi

Type: string
Custom iSCSI Initiator Name. If initiatorName is specified with iscsiInterface simultaneously, new iSCSI interface : will be created for the connection.

Type: string
Target iSCSI Qualified Name.

Type: string
iSCSI Interface Name that uses an iSCSI transport. Defaults to 'default' (tcp).

Type: integerFormat: int32
iSCSI Target Lun number.

Type: array of string
iSCSI Target Portal List. The Portal is either an IP or ip_addr:port if the port is other than default (typically TCP ports 860 and 3260). No Additional Items

Each item of this array must be:

Type: string

Type: boolean
ReadOnly here will force the ReadOnly setting in VolumeMounts. Defaults to false.

Type: object
CHAP Secret for iSCSI target and initiator authenticationSame definition as controllerPublishSecretRef

Type: string
iSCSI Target Portal. The Portal is either an IP or ip_addr:port if the port is other than default (typically TCP ports 860 and 3260).
Type: object
Represents an ISCSI disk. ISCSI volumes can only be mounted as read/write once. ISCSI volumes support ownership management and SELinux relabeling.Same definition as iscsi
Type: object
Lifecycle describes actions that the management system should take in response to container lifecycle events. For the PostStart and PreStop lifecycle handlers, management of the container blocks until the action is complete, unless the container process fails, in which case the handler is aborted.Same definition as lifecycle
Type: object
LimitRange sets resource usage limits for each kind of resource in a Namespace.

Type: string
APIVersion defines the versioned schema of this representation of an object. Servers should convert recognized schemas to the latest internal value, and may reject unrecognized values. More info: https://git.k8s.io/community/contributors/devel/api-conventions.md#resources

Type: enum (of string)
Kind is a string value representing the REST resource this object represents. Servers may infer this from the endpoint the client submits requests to. Cannot be updated. In CamelCase. More info: https://git.k8s.io/community/contributors/devel/api-conventions.md#types-kinds

Must be one of:

  • "LimitRange"

Type: object
Standard object's metadata. More info: https://git.k8s.io/community/contributors/devel/api-conventions.md#metadataSame definition as metadata

Type: object
Spec defines the limits enforced. More info: https://git.k8s.io/community/contributors/devel/api-conventions.md#spec-and-status

Type: array
Limits is the list of LimitRangeItem objects that are enforced. No Additional Items

Each item of this array must be:

Type: object
LimitRangeItem defines a min/max usage limit for any resource that matches on kind.

Type: object
Default resource requirement limit value by resource name if resource limit is omitted.

Each additional property must conform to the following schema

Type: object
Same definition as divisor

Type: object
DefaultRequest is the default resource requirement request value by resource name if resource request is omitted.

Each additional property must conform to the following schema

Type: object
Same definition as divisor

Type: object
Max usage constraints on this kind by resource name.

Each additional property must conform to the following schema

Type: object
Same definition as divisor

Type: object
MaxLimitRequestRatio if specified, the named resource must have a request and limit that are both non-zero where limit divided by request is less than or equal to the enumerated value; this represents the max burst for the named resource.

Each additional property must conform to the following schema

Type: object
Same definition as divisor

Type: object
Min usage constraints on this kind by resource name.

Each additional property must conform to the following schema

Type: object
Same definition as divisor

Type: string
Type of resource that this limit applies to.
Type: object
LimitRangeItem defines a min/max usage limit for any resource that matches on kind.Same definition as oneOf_i267_spec_limits_items
Type: object
LimitRangeList is a list of LimitRange items.

Type: string
APIVersion defines the versioned schema of this representation of an object. Servers should convert recognized schemas to the latest internal value, and may reject unrecognized values. More info: https://git.k8s.io/community/contributors/devel/api-conventions.md#resources

Type: array
Items is a list of LimitRange objects. More info: https://kubernetes.io/docs/concepts/configuration/manage-compute-resources-container/ No Additional Items

Each item of this array must be:

Type: object
LimitRange sets resource usage limits for each kind of resource in a Namespace.Same definition as oneOf_i267

Type: enum (of string)
Kind is a string value representing the REST resource this object represents. Servers may infer this from the endpoint the client submits requests to. Cannot be updated. In CamelCase. More info: https://git.k8s.io/community/contributors/devel/api-conventions.md#types-kinds

Must be one of:

  • "LimitRangeList"

Type: object
Standard list metadata. More info: https://git.k8s.io/community/contributors/devel/api-conventions.md#types-kindsSame definition as metadata
Type: object
LimitRangeSpec defines a min/max usage limit for resources that match on kind.Same definition as spec
Type: object
LoadBalancerIngress represents the status of a load-balancer ingress point: traffic intended for the service should be sent to an ingress point.

Type: string
Hostname is set for load-balancer ingress points that are DNS based (typically AWS load-balancers)

Type: string
IP is set for load-balancer ingress points that are IP based (typically GCE or OpenStack load-balancers)
Type: object
LoadBalancerStatus represents the status of a load-balancer.

Type: array
Ingress is a list containing ingress points for the load-balancer. Traffic intended for the service should be sent to these ingress points. No Additional Items

Each item of this array must be:

Type: object
LoadBalancerIngress represents the status of a load-balancer ingress point: traffic intended for the service should be sent to an ingress point.Same definition as oneOf_i271
Type: object
LocalObjectReference contains enough information to let you locate the referenced object inside the same namespace.Same definition as oneOf_i14_spec_template_spec_imagePullSecrets_items
Type: object
Local represents directly-attached storage with node affinity (Beta feature)

Type: string
Filesystem type to mount. It applies only when the Path is a block device. Must be a filesystem type supported by the host operating system. Ex. "ext4", "xfs", "ntfs". The default value is to auto-select a fileystem if unspecified.

Type: string
The full path to the volume on the node. It can be either a directory or block device (disk, partition, ...).
Type: object
Represents an NFS mount that lasts the lifetime of a pod. NFS volumes do not support ownership management or SELinux relabeling.Same definition as nfs
Type: object
Namespace provides a scope for Names. Use of multiple namespaces is optional.

Type: string
APIVersion defines the versioned schema of this representation of an object. Servers should convert recognized schemas to the latest internal value, and may reject unrecognized values. More info: https://git.k8s.io/community/contributors/devel/api-conventions.md#resources

Type: enum (of string)
Kind is a string value representing the REST resource this object represents. Servers may infer this from the endpoint the client submits requests to. Cannot be updated. In CamelCase. More info: https://git.k8s.io/community/contributors/devel/api-conventions.md#types-kinds

Must be one of:

  • "Namespace"

Type: object
Standard object's metadata. More info: https://git.k8s.io/community/contributors/devel/api-conventions.md#metadataSame definition as metadata

Type: object
Spec defines the behavior of the Namespace. More info: https://git.k8s.io/community/contributors/devel/api-conventions.md#spec-and-status

Type: array of string
Finalizers is an opaque list of values that must be empty to permanently remove object from storage. More info: https://kubernetes.io/docs/tasks/administer-cluster/namespaces/ No Additional Items

Each item of this array must be:

Type: object
Status describes the current status of a Namespace. More info: https://git.k8s.io/community/contributors/devel/api-conventions.md#spec-and-status

Type: string
Phase is the current lifecycle phase of the namespace. More info: https://kubernetes.io/docs/tasks/administer-cluster/namespaces/
Type: object
NamespaceList is a list of Namespaces.

Type: string
APIVersion defines the versioned schema of this representation of an object. Servers should convert recognized schemas to the latest internal value, and may reject unrecognized values. More info: https://git.k8s.io/community/contributors/devel/api-conventions.md#resources

Type: array
Items is the list of Namespace objects in the list. More info: https://kubernetes.io/docs/concepts/overview/working-with-objects/namespaces/ No Additional Items

Each item of this array must be:

Type: object
Namespace provides a scope for Names. Use of multiple namespaces is optional.Same definition as oneOf_i276

Type: enum (of string)
Kind is a string value representing the REST resource this object represents. Servers may infer this from the endpoint the client submits requests to. Cannot be updated. In CamelCase. More info: https://git.k8s.io/community/contributors/devel/api-conventions.md#types-kinds

Must be one of:

  • "NamespaceList"

Type: object
Standard list metadata. More info: https://git.k8s.io/community/contributors/devel/api-conventions.md#types-kindsSame definition as metadata
Type: object
NamespaceSpec describes the attributes on a Namespace.Same definition as spec
Type: object
NamespaceStatus is information about the current status of a Namespace.Same definition as status
Type: object
Node is a worker node in Kubernetes. Each node will have a unique identifier in the cache (i.e. in etcd).

Type: string
APIVersion defines the versioned schema of this representation of an object. Servers should convert recognized schemas to the latest internal value, and may reject unrecognized values. More info: https://git.k8s.io/community/contributors/devel/api-conventions.md#resources

Type: enum (of string)
Kind is a string value representing the REST resource this object represents. Servers may infer this from the endpoint the client submits requests to. Cannot be updated. In CamelCase. More info: https://git.k8s.io/community/contributors/devel/api-conventions.md#types-kinds

Must be one of:

  • "Node"

Type: object
Standard object's metadata. More info: https://git.k8s.io/community/contributors/devel/api-conventions.md#metadataSame definition as metadata

Type: object
Spec defines the behavior of a node. https://git.k8s.io/community/contributors/devel/api-conventions.md#spec-and-status

Type: object
If specified, the source to get node configuration from The DynamicKubeletConfig feature gate must be enabled for the Kubelet to use this field

Type: object
ConfigMap is a reference to a Node's ConfigMapSame definition as oneOf_i221

Type: string
Deprecated. Not all kubelets will set this field. Remove field after 1.13. see: https://issues.k8s.io/61966

Type: string
PodCIDR represents the pod IP range assigned to the node.

Type: string
ID of the node assigned by the cloud provider in the format: ://

Type: array
If specified, the node's taints. No Additional Items

Each item of this array must be:

Type: object
The node this Taint is attached to has the "effect" on any pod that does not tolerate the Taint.

Type: string
Required. The effect of the taint on pods that do not tolerate the taint. Valid effects are NoSchedule, PreferNoSchedule and NoExecute.

Type: string
Required. The taint key to be applied to a node.

Type: string
TimeAdded represents the time at which the taint was added. It is only written for NoExecute taints.Same definition as creationTimestamp

Type: string
Required. The taint value corresponding to the taint key.

Type: boolean
Unschedulable controls node schedulability of new pods. By default, node is schedulable. More info: https://kubernetes.io/docs/concepts/nodes/node/#manual-node-administration

Type: object
Most recently observed status of the node. Populated by the system. Read-only. More info: https://git.k8s.io/community/contributors/devel/api-conventions.md#spec-and-status

Type: array
List of addresses reachable to the node. Queried from cloud provider, if available. More info: https://kubernetes.io/docs/concepts/nodes/node/#addresses No Additional Items

Each item of this array must be:

Type: object
NodeAddress contains information for the node's address.

Type: string
The node address.

Type: string
Node address type, one of Hostname, ExternalIP or InternalIP.

Type: object
Allocatable represents the resources of a node that are available for scheduling. Defaults to Capacity.

Each additional property must conform to the following schema

Type: object
Same definition as divisor

Type: object
Capacity represents the total resources of a node. More info: https://kubernetes.io/docs/concepts/storage/persistent-volumes#capacity

Each additional property must conform to the following schema

Type: object
Same definition as divisor

Type: array
Conditions is an array of current observed node conditions. More info: https://kubernetes.io/docs/concepts/nodes/node/#condition No Additional Items

Each item of this array must be:

Type: object
NodeCondition contains condition information for a node.

Type: string
Last time we got an update on a given condition.Same definition as creationTimestamp

Type: string
Last time the condition transit from one status to another.Same definition as creationTimestamp

Type: string
Human readable message indicating details about last transition.

Type: string
(brief) reason for the condition's last transition.

Type: string
Status of the condition, one of True, False, Unknown.

Type: string
Type of node condition.

Type: object
Status of the config assigned to the node via the dynamic Kubelet config feature.

Type: object
Active reports the checkpointed config the node is actively using. Active will represent either the current version of the Assigned config, or the current LastKnownGood config, depending on whether attempting to use the Assigned config results in an error.Same definition as configSource

Type: object
Assigned reports the checkpointed config the node will try to use. When Node.Spec.ConfigSource is updated, the node checkpoints the associated config payload to local disk, along with a record indicating intended config. The node refers to this record to choose its config checkpoint, and reports this record in Assigned. Assigned only updates in the status after the record has been checkpointed to disk. When the Kubelet is restarted, it tries to make the Assigned config the Active config by loading and validating the checkpointed payload identified by Assigned.
Same definition as configSource

Type: string
Error describes any problems reconciling the Spec.ConfigSource to the Active config. Errors may occur, for example, attempting to checkpoint Spec.ConfigSource to the local Assigned record, attempting to checkpoint the payload associated with Spec.ConfigSource, attempting to load or validate the Assigned config, etc. Errors may occur at different points while syncing config. Earlier errors (e.g. download or checkpointing errors) will not result in a rollback to LastKnownGood, and may resolve across Kubelet retries. Later errors (e.g. loading or validating a checkpointed config) will result in a rollback to LastKnownGood. In the latter case, it is usually possible to resolve the error by fixing the config assigned in Spec.ConfigSource. You can find additional information for debugging by searching the error message in the Kubelet log. Error is a human-readable description of the error state; machines can check whether or not Error is empty, but should not rely on the stability of the Error text across Kubelet versions.

Type: object
LastKnownGood reports the checkpointed config the node will fall back to when it encounters an error attempting to use the Assigned config. The Assigned config becomes the LastKnownGood config when the node determines that the Assigned config is stable and correct. This is currently implemented as a 10-minute soak period starting when the local record of Assigned config is updated. If the Assigned config is Active at the end of this period, it becomes the LastKnownGood. Note that if Spec.ConfigSource is reset to nil (use local defaults), the LastKnownGood is also immediately reset to nil, because the local default config is always assumed good. You should not make assumptions about the node's method of determining config stability and correctness, as this may change or become configurable in the future.
Same definition as configSource

Type: object
Endpoints of daemons running on the Node.

Type: object
Endpoint on which Kubelet is listening.Same definition as oneOf_i232

Type: array
List of container images on this node No Additional Items

Each item of this array must be:

Type: object
Set of ids/uuids to uniquely identify the node. More info: https://kubernetes.io/docs/concepts/nodes/node/#info

Type: string
The Architecture reported by the node

Type: string
Boot ID reported by the node.

Type: string
ContainerRuntime Version reported by the node through runtime remote API (e.g. docker://1.5.0).

Type: string
Kernel Version reported by the node from 'uname -r' (e.g. 3.16.0-0.bpo.4-amd64).

Type: string
KubeProxy Version reported by the node.

Type: string
Kubelet Version reported by the node.

Type: string
MachineID reported by the node. For unique machine identification in the cluster this field is preferred. Learn more from man(5) machine-id: http://man7.org/linux/man-pages/man5/machine-id.5.html

Type: string
The Operating System reported by the node

Type: string
OS Image reported by the node from /etc/os-release (e.g. Debian GNU/Linux 7 (wheezy)).

Type: string
SystemUUID reported by the node. For unique machine identification MachineID is preferred. This field is specific to Red Hat hosts https://access.redhat.com/documentation/en-US/Red_Hat_Subscription_Management/1/html/RHSM/getting-system-uuid.html

Type: string
NodePhase is the recently observed lifecycle phase of the node. More info: https://kubernetes.io/docs/concepts/nodes/node/#phase The field is never populated, and now is deprecated.

Type: array
List of volumes that are attached to the node. No Additional Items

Each item of this array must be:

Type: object
AttachedVolume describes a volume attached to a nodeSame definition as oneOf_i202

Type: array of string
List of attachable volumes in use (mounted) by the node. No Additional Items

Each item of this array must be:

Type: object
NodeAddress contains information for the node's address.Same definition as oneOf_i280_status_addresses_items
Type: object
Node affinity is a group of node affinity scheduling rules.Same definition as nodeAffinity
Type: object
NodeCondition contains condition information for a node.Same definition as oneOf_i280_status_conditions_items
Type: object
NodeConfigSource specifies a source of node configuration. Exactly one subfield (excluding metadata) must be non-nil.Same definition as configSource
Type: object
NodeConfigStatus describes the status of the config assigned by Node.Spec.ConfigSource.Same definition as config
Type: object
NodeDaemonEndpoints lists ports opened by daemons running on the Node.Same definition as daemonEndpoints
Type: object
NodeList is the whole list of all Nodes which have been registered with master.

Type: string
APIVersion defines the versioned schema of this representation of an object. Servers should convert recognized schemas to the latest internal value, and may reject unrecognized values. More info: https://git.k8s.io/community/contributors/devel/api-conventions.md#resources

Type: array
List of nodes No Additional Items

Each item of this array must be:

Type: object
Node is a worker node in Kubernetes. Each node will have a unique identifier in the cache (i.e. in etcd).Same definition as oneOf_i280

Type: enum (of string)
Kind is a string value representing the REST resource this object represents. Servers may infer this from the endpoint the client submits requests to. Cannot be updated. In CamelCase. More info: https://git.k8s.io/community/contributors/devel/api-conventions.md#types-kinds

Must be one of:

  • "NodeList"

Type: object
Standard list metadata. More info: https://git.k8s.io/community/contributors/devel/api-conventions.md#types-kindsSame definition as metadata
Type: object
A node selector represents the union of the results of one or more label queries over a set of nodes; that is, it represents the OR of the selectors represented by the node selector terms.Same definition as requiredDuringSchedulingIgnoredDuringExecution
Type: object
A node selector requirement is a selector that contains values, a key, and an operator that relates the key and values.Same definition as oneOf_i14_spec_template_spec_affinity_nodeAffinity_preferredDuringSchedulingIgnoredDuringExecution_items_preference_matchExpressions_items
Type: object
A null or empty node selector term matches no objects. The requirements of them are ANDed. The TopologySelectorTerm type implements a subset of the NodeSelectorTerm.Same definition as preference
Type: object
NodeSpec describes the attributes that a node is created with.Same definition as spec
Type: object
NodeStatus is information about the current status of a node.Same definition as status
Type: object
NodeSystemInfo is a set of ids/uuids to uniquely identify the node.Same definition as nodeInfo
Type: object
ObjectFieldSelector selects an APIVersioned field of an object.Same definition as fieldRef
Type: object
ObjectReference contains enough information to let you inspect or modify the referred object.Same definition as oneOf_i182_status_active_items
Type: object
PersistentVolume (PV) is a storage resource provisioned by an administrator. It is analogous to a node. More info: https://kubernetes.io/docs/concepts/storage/persistent-volumes

Type: string
APIVersion defines the versioned schema of this representation of an object. Servers should convert recognized schemas to the latest internal value, and may reject unrecognized values. More info: https://git.k8s.io/community/contributors/devel/api-conventions.md#resources

Type: enum (of string)
Kind is a string value representing the REST resource this object represents. Servers may infer this from the endpoint the client submits requests to. Cannot be updated. In CamelCase. More info: https://git.k8s.io/community/contributors/devel/api-conventions.md#types-kinds

Must be one of:

  • "PersistentVolume"

Type: object
Standard object's metadata. More info: https://git.k8s.io/community/contributors/devel/api-conventions.md#metadataSame definition as metadata

Type: object
Spec defines a specification of a persistent volume owned by the cluster. Provisioned by an administrator. More info: https://kubernetes.io/docs/concepts/storage/persistent-volumes#persistent-volumes

Type: array of string
AccessModes contains all ways the volume can be mounted. More info: https://kubernetes.io/docs/concepts/storage/persistent-volumes#access-modes No Additional Items

Each item of this array must be:

Type: object
AWSElasticBlockStore represents an AWS Disk resource that is attached to a kubelet's host machine and then exposed to the pod. More info: https://kubernetes.io/docs/concepts/storage/volumes#awselasticblockstoreSame definition as awsElasticBlockStore

Type: object
AzureDisk represents an Azure Data Disk mount on the host and bind mount to the pod.Same definition as azureDisk

Type: object
AzureFile represents an Azure File Service mount on the host and bind mount to the pod.Same definition as oneOf_i204

Type: object
A description of the persistent volume's resources and capacity. More info: https://kubernetes.io/docs/concepts/storage/persistent-volumes#capacity

Each additional property must conform to the following schema

Type: object
Same definition as divisor

Type: object
CephFS represents a Ceph FS mount on the host that shares a pod's lifetimeSame definition as oneOf_i209

Type: object
Cinder represents a cinder volume attached and mounted on kubelets host machine More info: https://releases.k8s.io/HEAD/examples/mysql-cinder-pd/README.mdSame definition as oneOf_i211

Type: object
ClaimRef is part of a bi-directional binding between PersistentVolume and PersistentVolumeClaim. Expected to be non-nil when bound. claim.VolumeName is the authoritative bind between PV and PVC. More info: https://kubernetes.io/docs/concepts/storage/persistent-volumes#bindingSame definition as oneOf_i182_status_active_items

Type: object
CSI represents storage that handled by an external CSI driver (Beta feature).Same definition as oneOf_i207

Type: object
FC represents a Fibre Channel resource that is attached to a kubelet's host machine and then exposed to the pod.Same definition as fc

Type: object
FlexVolume represents a generic volume resource that is provisioned/attached using an exec based plugin.Same definition as oneOf_i251

Type: object
Flocker represents a Flocker volume attached to a kubelet's host machine and exposed to the pod for its usage. This depends on the Flocker control service being runningSame definition as flocker

Type: object
GCEPersistentDisk represents a GCE Disk resource that is attached to a kubelet's host machine and then exposed to the pod. Provisioned by an admin. More info: https://kubernetes.io/docs/concepts/storage/volumes#gcepersistentdiskSame definition as gcePersistentDisk

Type: object
Glusterfs represents a Glusterfs volume that is attached to a host and exposed to the pod. Provisioned by an admin. More info: https://releases.k8s.io/HEAD/examples/volumes/glusterfs/README.mdSame definition as oneOf_i256

Type: object
HostPath represents a directory on the host. Provisioned by a developer or tester. This is useful for single-node development and testing only! On-host storage is not supported in any way and WILL NOT WORK in a multi-node cluster. More info: https://kubernetes.io/docs/concepts/storage/volumes#hostpathSame definition as hostPath

Type: object
ISCSI represents an ISCSI Disk resource that is attached to a kubelet's host machine and then exposed to the pod. Provisioned by an admin.Same definition as oneOf_i263

Type: object
Local represents directly-attached storage with node affinitySame definition as oneOf_i274

Type: array of string
A list of mount options, e.g. ["ro", "soft"]. Not validated - mount will simply fail if one is invalid. More info: https://kubernetes.io/docs/concepts/storage/persistent-volumes/#mount-options No Additional Items

Each item of this array must be:

Type: object
NFS represents an NFS mount on the host. Provisioned by an admin. More info: https://kubernetes.io/docs/concepts/storage/volumes#nfsSame definition as nfs

Type: object
NodeAffinity defines constraints that limit what nodes this volume can be accessed from. This field influences the scheduling of pods that use this volume.

Type: object
Required specifies hard node constraints that must be met.Same definition as requiredDuringSchedulingIgnoredDuringExecution

Type: string
What happens to a persistent volume when released from its claim. Valid options are Retain (default for manually created PersistentVolumes), Delete (default for dynamically provisioned PersistentVolumes), and Recycle (deprecated). Recycle must be supported by the volume plugin underlying this PersistentVolume. More info: https://kubernetes.io/docs/concepts/storage/persistent-volumes#reclaiming

Type: object
PhotonPersistentDisk represents a PhotonController persistent disk attached and mounted on kubelets host machineSame definition as photonPersistentDisk

Type: object
PortworxVolume represents a portworx volume attached and mounted on kubelets host machineSame definition as portworxVolume

Type: object
Quobyte represents a Quobyte mount on the host that shares a pod's lifetimeSame definition as quobyte

Type: object
RBD represents a Rados Block Device mount on the host that shares a pod's lifetime. More info: https://releases.k8s.io/HEAD/examples/volumes/rbd/README.md

Type: string
Filesystem type of the volume that you want to mount. Tip: Ensure that the filesystem type is supported by the host operating system. Examples: "ext4", "xfs", "ntfs". Implicitly inferred to be "ext4" if unspecified. More info: https://kubernetes.io/docs/concepts/storage/volumes#rbd

Type: string
The rados image name. More info: https://releases.k8s.io/HEAD/examples/volumes/rbd/README.md#how-to-use-it

Type: string
Keyring is the path to key ring for RBDUser. Default is /etc/ceph/keyring. More info: https://releases.k8s.io/HEAD/examples/volumes/rbd/README.md#how-to-use-it

Type: array of string
A collection of Ceph monitors. More info: https://releases.k8s.io/HEAD/examples/volumes/rbd/README.md#how-to-use-it No Additional Items

Each item of this array must be:

Type: string
The rados pool name. Default is rbd. More info: https://releases.k8s.io/HEAD/examples/volumes/rbd/README.md#how-to-use-it

Type: boolean
ReadOnly here will force the ReadOnly setting in VolumeMounts. Defaults to false. More info: https://releases.k8s.io/HEAD/examples/volumes/rbd/README.md#how-to-use-it

Type: object
SecretRef is name of the authentication secret for RBDUser. If provided overrides keyring. Default is nil. More info: https://releases.k8s.io/HEAD/examples/volumes/rbd/README.md#how-to-use-itSame definition as controllerPublishSecretRef

Type: string
The rados user name. Default is admin. More info: https://releases.k8s.io/HEAD/examples/volumes/rbd/README.md#how-to-use-it

Type: object
ScaleIO represents a ScaleIO persistent volume attached and mounted on Kubernetes nodes.

Type: string
Filesystem type to mount. Must be a filesystem type supported by the host operating system. Ex. "ext4", "xfs", "ntfs". Default is "xfs"

Type: string
The host address of the ScaleIO API Gateway.

Type: string
The name of the ScaleIO Protection Domain for the configured storage.

Type: boolean
Defaults to false (read/write). ReadOnly here will force the ReadOnly setting in VolumeMounts.

Type: object
SecretRef references to the secret for ScaleIO user and other sensitive information. If this is not provided, Login operation will fail.Same definition as controllerPublishSecretRef

Type: boolean
Flag to enable/disable SSL communication with Gateway, default false

Type: string
Indicates whether the storage for a volume should be ThickProvisioned or ThinProvisioned. Default is ThinProvisioned.

Type: string
The ScaleIO Storage Pool associated with the protection domain.

Type: string
The name of the storage system as configured in ScaleIO.

Type: string
The name of a volume already created in the ScaleIO system that is associated with this volume source.

Type: string
Name of StorageClass to which this persistent volume belongs. Empty value means that this volume does not belong to any StorageClass.

Type: object
StorageOS represents a StorageOS volume that is attached to the kubelet's host machine and mounted into the pod More info: https://releases.k8s.io/HEAD/examples/volumes/storageos/README.md

Type: string
Filesystem type to mount. Must be a filesystem type supported by the host operating system. Ex. "ext4", "xfs", "ntfs". Implicitly inferred to be "ext4" if unspecified.

Type: boolean
Defaults to false (read/write). ReadOnly here will force the ReadOnly setting in VolumeMounts.

Type: object
SecretRef specifies the secret to use for obtaining the StorageOS API credentials. If not specified, default values will be attempted.Same definition as oneOf_i182_status_active_items

Type: string
VolumeName is the human-readable name of the StorageOS volume. Volume names are only unique within a namespace.

Type: string
VolumeNamespace specifies the scope of the volume within StorageOS. If no namespace is specified then the Pod's namespace will be used. This allows the Kubernetes name scoping to be mirrored within StorageOS for tighter integration. Set VolumeName to any name to override the default behaviour. Set to "default" if you are not using namespaces within StorageOS. Namespaces that do not pre-exist within StorageOS will be created.

Type: string
volumeMode defines if a volume is intended to be used with a formatted filesystem or to remain in raw block state. Value of Filesystem is implied when not included in spec. This is a beta feature.

Type: object
VsphereVolume represents a vSphere volume attached and mounted on kubelets host machineSame definition as vsphereVolume

Type: object
Status represents the current information/status for the persistent volume. Populated by the system. Read-only. More info: https://kubernetes.io/docs/concepts/storage/persistent-volumes#persistent-volumes

Type: string
A human-readable message indicating details about why the volume is in this state.

Type: string
Phase indicates if a volume is available, bound to a claim, or released by a claim. More info: https://kubernetes.io/docs/concepts/storage/persistent-volumes#phase

Type: string
Reason is a brief CamelCase string that describes any failure and is meant for machine parsing and tidy display in the CLI.
Type: object
PersistentVolumeClaim is a user's request for and claim to a persistent volumeSame definition as oneOf_i34_spec_volumeClaimTemplates_items
Type: object
PersistentVolumeClaimList is a list of PersistentVolumeClaim items.

Type: string
APIVersion defines the versioned schema of this representation of an object. Servers should convert recognized schemas to the latest internal value, and may reject unrecognized values. More info: https://git.k8s.io/community/contributors/devel/api-conventions.md#resources

Type: array
A list of persistent volume claims. More info: https://kubernetes.io/docs/concepts/storage/persistent-volumes#persistentvolumeclaims No Additional Items

Each item of this array must be:

Type: object
PersistentVolumeClaim is a user's request for and claim to a persistent volumeSame definition as oneOf_i34_spec_volumeClaimTemplates_items

Type: enum (of string)
Kind is a string value representing the REST resource this object represents. Servers may infer this from the endpoint the client submits requests to. Cannot be updated. In CamelCase. More info: https://git.k8s.io/community/contributors/devel/api-conventions.md#types-kinds

Must be one of:

  • "PersistentVolumeClaimList"

Type: object
Standard list metadata. More info: https://git.k8s.io/community/contributors/devel/api-conventions.md#types-kindsSame definition as metadata
Type: object
PersistentVolumeClaimSpec describes the common attributes of storage devices and allows a Source for provider-specific attributesSame definition as spec
Type: object
PersistentVolumeClaimStatus is the current status of a persistent volume claim.Same definition as status
Type: object
PersistentVolumeClaimVolumeSource references the user's PVC in the same namespace. This volume finds the bound PV and mounts that volume for the pod. A PersistentVolumeClaimVolumeSource is, essentially, a wrapper around another type of volume that is owned by someone else (the system).Same definition as persistentVolumeClaim
Type: object
PersistentVolumeList is a list of PersistentVolume items.

Type: string
APIVersion defines the versioned schema of this representation of an object. Servers should convert recognized schemas to the latest internal value, and may reject unrecognized values. More info: https://git.k8s.io/community/contributors/devel/api-conventions.md#resources

Type: array
List of persistent volumes. More info: https://kubernetes.io/docs/concepts/storage/persistent-volumes No Additional Items

Each item of this array must be:

Type: object
PersistentVolume (PV) is a storage resource provisioned by an administrator. It is analogous to a node. More info: https://kubernetes.io/docs/concepts/storage/persistent-volumesSame definition as oneOf_i296

Type: enum (of string)
Kind is a string value representing the REST resource this object represents. Servers may infer this from the endpoint the client submits requests to. Cannot be updated. In CamelCase. More info: https://git.k8s.io/community/contributors/devel/api-conventions.md#types-kinds

Must be one of:

  • "PersistentVolumeList"

Type: object
Standard list metadata. More info: https://git.k8s.io/community/contributors/devel/api-conventions.md#types-kindsSame definition as metadata
Type: object
PersistentVolumeSpec is the specification of a persistent volume.Same definition as spec
Type: object
PersistentVolumeStatus is the current status of a persistent volume.Same definition as status
Type: object
Represents a Photon Controller persistent disk resource.Same definition as photonPersistentDisk
Type: object
Pod is a collection of containers that can run on a host. This resource is created by clients and scheduled onto hosts.

Type: string
APIVersion defines the versioned schema of this representation of an object. Servers should convert recognized schemas to the latest internal value, and may reject unrecognized values. More info: https://git.k8s.io/community/contributors/devel/api-conventions.md#resources

Type: enum (of string)
Kind is a string value representing the REST resource this object represents. Servers may infer this from the endpoint the client submits requests to. Cannot be updated. In CamelCase. More info: https://git.k8s.io/community/contributors/devel/api-conventions.md#types-kinds

Must be one of:

  • "Pod"

Type: object
Standard object's metadata. More info: https://git.k8s.io/community/contributors/devel/api-conventions.md#metadataSame definition as metadata

Type: object
Specification of the desired behavior of the pod. More info: https://git.k8s.io/community/contributors/devel/api-conventions.md#spec-and-statusSame definition as spec

Type: object
Most recently observed status of the pod. This data may not be up to date. Populated by the system. Read-only. More info: https://git.k8s.io/community/contributors/devel/api-conventions.md#spec-and-status

Type: array
Current service state of pod. More info: https://kubernetes.io/docs/concepts/workloads/pods/pod-lifecycle#pod-conditions No Additional Items

Each item of this array must be:

Type: object
PodCondition contains details for the current condition of this pod.

Type: string
Last time the condition transitioned from one status to another.Same definition as creationTimestamp

Type: string
Human-readable message indicating details about last transition.

Type: string
Unique, one-word, CamelCase reason for the condition's last transition.

Type: string
Status is the status of the condition. Can be True, False, Unknown. More info: https://kubernetes.io/docs/concepts/workloads/pods/pod-lifecycle#pod-conditions

Type: string
Type is the type of the condition. More info: https://kubernetes.io/docs/concepts/workloads/pods/pod-lifecycle#pod-conditions

Type: array
The list has one entry per container in the manifest. Each entry is currently the output of `docker inspect`. More info: https://kubernetes.io/docs/concepts/workloads/pods/pod-lifecycle#pod-and-container-status No Additional Items

Each item of this array must be:

Type: object
ContainerStatus contains details for the current status of this container.Same definition as oneOf_i231

Type: string
IP address of the host to which the pod is assigned. Empty if not yet scheduled.

Type: array
The list has one entry per init container in the manifest. The most recent successful init container will have ready = true, the most recently started container will have startTime set. More info: https://kubernetes.io/docs/concepts/workloads/pods/pod-lifecycle#pod-and-container-status No Additional Items

Each item of this array must be:

Type: object
ContainerStatus contains details for the current status of this container.Same definition as oneOf_i231

Type: string
A human readable message indicating details about why the pod is in this condition.

Type: string
nominatedNodeName is set only when this pod preempts other pods on the node, but it cannot be scheduled right away as preemption victims receive their graceful termination periods. This field does not guarantee that the pod will be scheduled on this node. Scheduler may decide to place the pod elsewhere if other nodes become available sooner. Scheduler may also decide to give the resources on this node to a higher priority pod that is created after preemption. As a result, this field may be different than PodSpec.nodeName when the pod is scheduled.

Type: string
The phase of a Pod is a simple, high-level summary of where the Pod is in its lifecycle. The conditions array, the reason and message fields, and the individual container status arrays contain more detail about the pod's status. There are five possible phase values: Pending: The pod has been accepted by the Kubernetes system, but one or more of the container images has not been created. This includes time before being scheduled as well as time spent downloading images over the network, which could take a while. Running: The pod has been bound to a node, and all of the containers have been created. At least one container is still running, or is in the process of starting or restarting. Succeeded: All containers in the pod have terminated in success, and will not be restarted. Failed: All containers in the pod have terminated, and at least one container has terminated in failure. The container either exited with non-zero status or was terminated by the system. Unknown: For some reason the state of the pod could not be obtained, typically due to an error in communicating with the host of the pod. More info: https://kubernetes.io/docs/concepts/workloads/pods/pod-lifecycle#pod-phase

Type: string
IP address allocated to the pod. Routable at least within the cluster. Empty if not yet allocated.

Type: string
The Quality of Service (QOS) classification assigned to the pod based on resource requirements See PodQOSClass type for available QOS classes More info: https://git.k8s.io/community/contributors/design-proposals/node/resource-qos.md

Type: string
A brief CamelCase message indicating details about why the pod is in this state. e.g. 'Evicted'

Type: string
RFC 3339 date and time at which the object was acknowledged by the Kubelet. This is before the Kubelet pulled the container image(s) for the pod.Same definition as creationTimestamp
Type: object
Pod affinity is a group of inter pod affinity scheduling rules.Same definition as podAffinity
Type: object
Defines a set of pods (namely those matching the labelSelector relative to the given namespace(s)) that this pod should be co-located (affinity) or not co-located (anti-affinity) with, where co-located is defined as running on a node whose value of the label with key matches that of any node on which a pod of the set of pods is runningSame definition as podAffinityTerm
Type: object
Pod anti affinity is a group of inter pod anti affinity scheduling rules.Same definition as podAntiAffinity
Type: object
PodCondition contains details for the current condition of this pod.Same definition as oneOf_i307_status_conditions_items
Type: object
PodDNSConfig defines the DNS parameters of a pod in addition to those generated from DNSPolicy.Same definition as dnsConfig
Type: object
PodDNSConfigOption defines DNS resolver options of a pod.Same definition as oneOf_i14_spec_template_spec_dnsConfig_options_items
Type: object
PodList is a list of Pods.

Type: string
APIVersion defines the versioned schema of this representation of an object. Servers should convert recognized schemas to the latest internal value, and may reject unrecognized values. More info: https://git.k8s.io/community/contributors/devel/api-conventions.md#resources

Type: array
List of pods. More info: https://git.k8s.io/community/contributors/devel/api-conventions.md No Additional Items

Each item of this array must be:

Type: object
Pod is a collection of containers that can run on a host. This resource is created by clients and scheduled onto hosts.Same definition as oneOf_i307

Type: enum (of string)
Kind is a string value representing the REST resource this object represents. Servers may infer this from the endpoint the client submits requests to. Cannot be updated. In CamelCase. More info: https://git.k8s.io/community/contributors/devel/api-conventions.md#types-kinds

Must be one of:

  • "PodList"

Type: object
Standard list metadata. More info: https://git.k8s.io/community/contributors/devel/api-conventions.md#types-kindsSame definition as metadata
Type: object
PodReadinessGate contains the reference to a pod conditionSame definition as oneOf_i14_spec_template_spec_readinessGates_items
Type: object
PodSecurityContext holds pod-level security attributes and common container settings. Some fields are also present in container.securityContext. Field values of container.securityContext take precedence over field values of PodSecurityContext.Same definition as securityContext
Type: object
PodSpec is a description of a pod.Same definition as spec
Type: object
PodStatus represents information about the status of a pod. Status may trail the actual state of a system, especially if the node that hosts the pod cannot contact the control plane.Same definition as status
Type: object
PodTemplate describes a template for creating copies of a predefined pod.

Type: string
APIVersion defines the versioned schema of this representation of an object. Servers should convert recognized schemas to the latest internal value, and may reject unrecognized values. More info: https://git.k8s.io/community/contributors/devel/api-conventions.md#resources

Type: enum (of string)
Kind is a string value representing the REST resource this object represents. Servers may infer this from the endpoint the client submits requests to. Cannot be updated. In CamelCase. More info: https://git.k8s.io/community/contributors/devel/api-conventions.md#types-kinds

Must be one of:

  • "PodTemplate"

Type: object
Standard object's metadata. More info: https://git.k8s.io/community/contributors/devel/api-conventions.md#metadataSame definition as metadata

Type: object
Template defines the pods that will be created from this pod template. https://git.k8s.io/community/contributors/devel/api-conventions.md#spec-and-statusSame definition as template
Type: object
PodTemplateList is a list of PodTemplates.

Type: string
APIVersion defines the versioned schema of this representation of an object. Servers should convert recognized schemas to the latest internal value, and may reject unrecognized values. More info: https://git.k8s.io/community/contributors/devel/api-conventions.md#resources

Type: array
List of pod templates No Additional Items

Each item of this array must be:

Type: object
PodTemplate describes a template for creating copies of a predefined pod.Same definition as oneOf_i319

Type: enum (of string)
Kind is a string value representing the REST resource this object represents. Servers may infer this from the endpoint the client submits requests to. Cannot be updated. In CamelCase. More info: https://git.k8s.io/community/contributors/devel/api-conventions.md#types-kinds

Must be one of:

  • "PodTemplateList"

Type: object
Standard list metadata. More info: https://git.k8s.io/community/contributors/devel/api-conventions.md#types-kindsSame definition as metadata
Type: object
PodTemplateSpec describes the data a pod should have when created from a templateSame definition as template
Type: object
PortworxVolumeSource represents a Portworx volume resource.Same definition as portworxVolume
Type: object
An empty preferred scheduling term matches all objects with implicit weight 0 (i.e. it's a no-op). A null preferred scheduling term matches no objects (i.e. is also a no-op).Same definition as oneOf_i14_spec_template_spec_affinity_nodeAffinity_preferredDuringSchedulingIgnoredDuringExecution_items
Type: object
Probe describes a health check to be performed against a container to determine whether it is alive or ready to receive traffic.Same definition as livenessProbe
Type: object
Represents a projected volume sourceSame definition as projected
Type: object
Represents a Quobyte mount that lasts the lifetime of a pod. Quobyte volumes do not support ownership management or SELinux relabeling.Same definition as quobyte
Type: object
Represents a Rados Block Device mount that lasts the lifetime of a pod. RBD volumes support ownership management and SELinux relabeling.Same definition as rbd
Type: object
Represents a Rados Block Device mount that lasts the lifetime of a pod. RBD volumes support ownership management and SELinux relabeling.Same definition as rbd
Type: object
ReplicationController represents the configuration of a replication controller.

Type: string
APIVersion defines the versioned schema of this representation of an object. Servers should convert recognized schemas to the latest internal value, and may reject unrecognized values. More info: https://git.k8s.io/community/contributors/devel/api-conventions.md#resources

Type: enum (of string)
Kind is a string value representing the REST resource this object represents. Servers may infer this from the endpoint the client submits requests to. Cannot be updated. In CamelCase. More info: https://git.k8s.io/community/contributors/devel/api-conventions.md#types-kinds

Must be one of:

  • "ReplicationController"

Type: object
If the Labels of a ReplicationController are empty, they are defaulted to be the same as the Pod(s) that the replication controller manages. Standard object's metadata. More info: https://git.k8s.io/community/contributors/devel/api-conventions.md#metadataSame definition as metadata

Type: object
Spec defines the specification of the desired behavior of the replication controller. More info: https://git.k8s.io/community/contributors/devel/api-conventions.md#spec-and-status

Type: integerFormat: int32
Minimum number of seconds for which a newly created pod should be ready without any of its container crashing, for it to be considered available. Defaults to 0 (pod will be considered available as soon as it is ready)

Type: integerFormat: int32
Replicas is the number of desired replicas. This is a pointer to distinguish between explicit zero and unspecified. Defaults to 1. More info: https://kubernetes.io/docs/concepts/workloads/controllers/replicationcontroller#what-is-a-replicationcontroller

Type: object
Selector is a label query over pods that should match the Replicas count. If Selector is empty, it is defaulted to the labels present on the Pod template. Label keys and values that must match in order to be controlled by this replication controller, if empty defaulted to labels on Pod template. More info: https://kubernetes.io/docs/concepts/overview/working-with-objects/labels/#label-selectors

Each additional property must conform to the following schema

Type: string

Type: object
Template is the object that describes the pod that will be created if insufficient replicas are detected. This takes precedence over a TemplateRef. More info: https://kubernetes.io/docs/concepts/workloads/controllers/replicationcontroller#pod-templateSame definition as template

Type: object
Status is the most recently observed status of the replication controller. This data may be out of date by some window of time. Populated by the system. Read-only. More info: https://git.k8s.io/community/contributors/devel/api-conventions.md#spec-and-status

Type: integerFormat: int32
The number of available replicas (ready for at least minReadySeconds) for this replication controller.

Type: array
Represents the latest available observations of a replication controller's current state. No Additional Items

Each item of this array must be:

Type: object
ReplicationControllerCondition describes the state of a replication controller at a certain point.

Type: string
The last time the condition transitioned from one status to another.Same definition as creationTimestamp

Type: string
A human readable message indicating details about the transition.

Type: string
The reason for the condition's last transition.

Type: string
Status of the condition, one of True, False, Unknown.

Type: string
Type of replication controller condition.

Type: integerFormat: int32
The number of pods that have labels matching the labels of the pod template of the replication controller.

Type: integerFormat: int64
ObservedGeneration reflects the generation of the most recently observed replication controller.

Type: integerFormat: int32
The number of ready replicas for this replication controller.

Type: integerFormat: int32
Replicas is the most recently oberved number of replicas. More info: https://kubernetes.io/docs/concepts/workloads/controllers/replicationcontroller#what-is-a-replicationcontroller
Type: object
ReplicationControllerCondition describes the state of a replication controller at a certain point.Same definition as oneOf_i329_status_conditions_items
Type: object
ReplicationControllerList is a collection of replication controllers.

Type: string
APIVersion defines the versioned schema of this representation of an object. Servers should convert recognized schemas to the latest internal value, and may reject unrecognized values. More info: https://git.k8s.io/community/contributors/devel/api-conventions.md#resources

Type: array
List of replication controllers. More info: https://kubernetes.io/docs/concepts/workloads/controllers/replicationcontroller No Additional Items

Each item of this array must be:

Type: object
ReplicationController represents the configuration of a replication controller.Same definition as oneOf_i329

Type: enum (of string)
Kind is a string value representing the REST resource this object represents. Servers may infer this from the endpoint the client submits requests to. Cannot be updated. In CamelCase. More info: https://git.k8s.io/community/contributors/devel/api-conventions.md#types-kinds

Must be one of:

  • "ReplicationControllerList"

Type: object
Standard list metadata. More info: https://git.k8s.io/community/contributors/devel/api-conventions.md#types-kindsSame definition as metadata
Type: object
ReplicationControllerSpec is the specification of a replication controller.Same definition as spec
Type: object
ReplicationControllerStatus represents the current status of a replication controller.Same definition as status
Type: object
ResourceFieldSelector represents container resources (cpu, memory) and their output formatSame definition as resourceFieldRef
Type: object
ResourceQuota sets aggregate quota restrictions enforced per namespace

Type: string
APIVersion defines the versioned schema of this representation of an object. Servers should convert recognized schemas to the latest internal value, and may reject unrecognized values. More info: https://git.k8s.io/community/contributors/devel/api-conventions.md#resources

Type: enum (of string)
Kind is a string value representing the REST resource this object represents. Servers may infer this from the endpoint the client submits requests to. Cannot be updated. In CamelCase. More info: https://git.k8s.io/community/contributors/devel/api-conventions.md#types-kinds

Must be one of:

  • "ResourceQuota"

Type: object
Standard object's metadata. More info: https://git.k8s.io/community/contributors/devel/api-conventions.md#metadataSame definition as metadata

Type: object
Spec defines the desired quota. https://git.k8s.io/community/contributors/devel/api-conventions.md#spec-and-status

Type: object
hard is the set of desired hard limits for each named resource. More info: https://kubernetes.io/docs/concepts/policy/resource-quotas/

Each additional property must conform to the following schema

Type: object
Same definition as divisor

Type: object
scopeSelector is also a collection of filters like scopes that must match each object tracked by a quota but expressed using ScopeSelectorOperator in combination with possible values. For a resource to match, both scopes AND scopeSelector (if specified in spec), must be matched.

Type: array
A list of scope selector requirements by scope of the resources. No Additional Items

Each item of this array must be:

Type: object
A scoped-resource selector requirement is a selector that contains values, a scope name, and an operator that relates the scope name and values.

Type: string
Represents a scope's relationship to a set of values. Valid operators are In, NotIn, Exists, DoesNotExist.

Type: string
The name of the scope that the selector applies to.

Type: array of string
An array of string values. If the operator is In or NotIn, the values array must be non-empty. If the operator is Exists or DoesNotExist, the values array must be empty. This array is replaced during a strategic merge patch. No Additional Items

Each item of this array must be:

Type: array of string
A collection of filters that must match each object tracked by a quota. If not specified, the quota matches all objects. No Additional Items

Each item of this array must be:

Type: object
Status defines the actual enforced quota and its current usage. https://git.k8s.io/community/contributors/devel/api-conventions.md#spec-and-status

Type: object
Hard is the set of enforced hard limits for each named resource. More info: https://kubernetes.io/docs/concepts/policy/resource-quotas/

Each additional property must conform to the following schema

Type: object
Same definition as divisor

Type: object
Used is the current observed total usage of the resource in the namespace.

Each additional property must conform to the following schema

Type: object
Same definition as divisor
Type: object
ResourceQuotaList is a list of ResourceQuota items.

Type: string
APIVersion defines the versioned schema of this representation of an object. Servers should convert recognized schemas to the latest internal value, and may reject unrecognized values. More info: https://git.k8s.io/community/contributors/devel/api-conventions.md#resources

Type: array
Items is a list of ResourceQuota objects. More info: https://kubernetes.io/docs/concepts/policy/resource-quotas/ No Additional Items

Each item of this array must be:

Type: object
ResourceQuota sets aggregate quota restrictions enforced per namespaceSame definition as oneOf_i335

Type: enum (of string)
Kind is a string value representing the REST resource this object represents. Servers may infer this from the endpoint the client submits requests to. Cannot be updated. In CamelCase. More info: https://git.k8s.io/community/contributors/devel/api-conventions.md#types-kinds

Must be one of:

  • "ResourceQuotaList"

Type: object
Standard list metadata. More info: https://git.k8s.io/community/contributors/devel/api-conventions.md#types-kindsSame definition as metadata
Type: object
ResourceQuotaSpec defines the desired hard limits to enforce for Quota.Same definition as spec
Type: object
ResourceQuotaStatus defines the enforced hard limits and observed use.Same definition as status
Type: object
ResourceRequirements describes the compute resource requirements.Same definition as resources
Type: object
SELinuxOptions are the labels to be applied to the containerSame definition as seLinuxOptions
Type: object
ScaleIOPersistentVolumeSource represents a persistent ScaleIO volumeSame definition as scaleIO
Type: object
ScaleIOVolumeSource represents a persistent ScaleIO volumeSame definition as scaleIO
Type: object
A scope selector represents the AND of the selectors represented by the scoped-resource selector requirements.Same definition as scopeSelector
Type: object
A scoped-resource selector requirement is a selector that contains values, a scope name, and an operator that relates the scope name and values.Same definition as oneOf_i335_spec_scopeSelector_matchExpressions_items
Type: object
Secret holds secret data of a certain type. The total bytes of the values in the Data field must be less than MaxSecretSize bytes.

Type: string
APIVersion defines the versioned schema of this representation of an object. Servers should convert recognized schemas to the latest internal value, and may reject unrecognized values. More info: https://git.k8s.io/community/contributors/devel/api-conventions.md#resources

Type: object
Data contains the secret data. Each key must consist of alphanumeric characters, '-', '_' or '.'. The serialized form of the secret data is a base64 encoded string, representing the arbitrary (possibly non-string) data value here. Described in https://tools.ietf.org/html/rfc4648#section-4

Each additional property must conform to the following schema

Type: stringFormat: byte

Type: enum (of string)
Kind is a string value representing the REST resource this object represents. Servers may infer this from the endpoint the client submits requests to. Cannot be updated. In CamelCase. More info: https://git.k8s.io/community/contributors/devel/api-conventions.md#types-kinds

Must be one of:

  • "Secret"

Type: object
Standard object's metadata. More info: https://git.k8s.io/community/contributors/devel/api-conventions.md#metadataSame definition as metadata

Type: object
stringData allows specifying non-binary secret data in string form. It is provided as a write-only convenience method. All keys and values are merged into the data field on write, overwriting any existing values. It is never output when reading from the API.

Each additional property must conform to the following schema

Type: string

Type: string
Used to facilitate programmatic handling of secret data.
Type: object
SecretEnvSource selects a Secret to populate the environment variables with. The contents of the target Secret's Data field will represent the key-value pairs as environment variables.Same definition as secretRef
Type: object
SecretKeySelector selects a key of a Secret.Same definition as secretKeyRef
Type: object
SecretList is a list of Secret.

Type: string
APIVersion defines the versioned schema of this representation of an object. Servers should convert recognized schemas to the latest internal value, and may reject unrecognized values. More info: https://git.k8s.io/community/contributors/devel/api-conventions.md#resources

Type: array
Items is a list of secret objects. More info: https://kubernetes.io/docs/concepts/configuration/secret No Additional Items

Each item of this array must be:

Type: object
Secret holds secret data of a certain type. The total bytes of the values in the Data field must be less than MaxSecretSize bytes.Same definition as oneOf_i345

Type: enum (of string)
Kind is a string value representing the REST resource this object represents. Servers may infer this from the endpoint the client submits requests to. Cannot be updated. In CamelCase. More info: https://git.k8s.io/community/contributors/devel/api-conventions.md#types-kinds

Must be one of:

  • "SecretList"

Type: object
Standard list metadata. More info: https://git.k8s.io/community/contributors/devel/api-conventions.md#types-kindsSame definition as metadata
Type: object
Adapts a secret into a projected volume. The contents of the target Secret's Data field will be presented in a projected volume as files using the keys in the Data field as the file names. Note that this is identical to a secret volume source without the default mode.Same definition as secret
Type: object
SecretReference represents a Secret Reference. It has enough information to retrieve secret in any namespaceSame definition as controllerPublishSecretRef
Type: object
Adapts a Secret into a volume. The contents of the target Secret's Data field will be presented in a volume as files using the keys in the Data field as the file names. Secret volumes support ownership management and SELinux relabeling.Same definition as secret
Type: object
SecurityContext holds security configuration that will be applied to a container. Some fields are present in both SecurityContext and PodSecurityContext. When both are set, the values in SecurityContext take precedence.Same definition as securityContext
Type: object
Service is a named abstraction of software service (for example, mysql) consisting of local port (for example 3306) that the proxy listens on, and the selector that determines which pods will answer requests sent through the proxy.

Type: string
APIVersion defines the versioned schema of this representation of an object. Servers should convert recognized schemas to the latest internal value, and may reject unrecognized values. More info: https://git.k8s.io/community/contributors/devel/api-conventions.md#resources

Type: enum (of string)
Kind is a string value representing the REST resource this object represents. Servers may infer this from the endpoint the client submits requests to. Cannot be updated. In CamelCase. More info: https://git.k8s.io/community/contributors/devel/api-conventions.md#types-kinds

Must be one of:

  • "Service"

Type: object
Standard object's metadata. More info: https://git.k8s.io/community/contributors/devel/api-conventions.md#metadataSame definition as metadata

Type: object
Spec defines the behavior of a service. https://git.k8s.io/community/contributors/devel/api-conventions.md#spec-and-status

Type: string
clusterIP is the IP address of the service and is usually assigned randomly by the master. If an address is specified manually and is not in use by others, it will be allocated to the service; otherwise, creation of the service will fail. This field can not be changed through updates. Valid values are "None", empty string (""), or a valid IP address. "None" can be specified for headless services when proxying is not required. Only applies to types ClusterIP, NodePort, and LoadBalancer. Ignored if type is ExternalName. More info: https://kubernetes.io/docs/concepts/services-networking/service/#virtual-ips-and-service-proxies

Type: array of string
externalIPs is a list of IP addresses for which nodes in the cluster will also accept traffic for this service. These IPs are not managed by Kubernetes. The user is responsible for ensuring that traffic arrives at a node with this IP. A common example is external load-balancers that are not part of the Kubernetes system. No Additional Items

Each item of this array must be:

Type: string
externalName is the external reference that kubedns or equivalent will return as a CNAME record for this service. No proxying will be involved. Must be a valid RFC-1123 hostname (https://tools.ietf.org/html/rfc1123) and requires Type to be ExternalName.

Type: string
externalTrafficPolicy denotes if this Service desires to route external traffic to node-local or cluster-wide endpoints. "Local" preserves the client source IP and avoids a second hop for LoadBalancer and Nodeport type services, but risks potentially imbalanced traffic spreading. "Cluster" obscures the client source IP and may cause a second hop to another node, but should have good overall load-spreading.

Type: integerFormat: int32
healthCheckNodePort specifies the healthcheck nodePort for the service. If not specified, HealthCheckNodePort is created by the service api backend with the allocated nodePort. Will use user-specified nodePort value if specified by the client. Only effects when Type is set to LoadBalancer and ExternalTrafficPolicy is set to Local.

Type: string
Only applies to Service Type: LoadBalancer LoadBalancer will get created with the IP specified in this field. This feature depends on whether the underlying cloud-provider supports specifying the loadBalancerIP when a load balancer is created. This field will be ignored if the cloud-provider does not support the feature.

Type: array of string
If specified and supported by the platform, this will restrict traffic through the cloud-provider load-balancer will be restricted to the specified client IPs. This field will be ignored if the cloud-provider does not support the feature." More info: https://kubernetes.io/docs/tasks/access-application-cluster/configure-cloud-provider-firewall/ No Additional Items

Each item of this array must be:

Type: array
The list of ports that are exposed by this service. More info: https://kubernetes.io/docs/concepts/services-networking/service/#virtual-ips-and-service-proxies No Additional Items

Each item of this array must be:

Type: object
ServicePort contains information on service's port.

Type: string
The name of this port within the service. This must be a DNS_LABEL. All ports within a ServiceSpec must have unique names. This maps to the 'Name' field in EndpointPort objects. Optional if only one ServicePort is defined on this service.

Type: integerFormat: int32
The port on each node on which this service is exposed when type=NodePort or LoadBalancer. Usually assigned by the system. If specified, it will be allocated to the service if unused or else creation of the service will fail. Default is to auto-allocate a port if the ServiceType of this Service requires one. More info: https://kubernetes.io/docs/concepts/services-networking/service/#type-nodeport

Type: integerFormat: int32
The port that will be exposed by this service.

Type: string
The IP protocol for this port. Supports "TCP", "UDP", and "SCTP". Default is TCP.

Type: object
Number or name of the port to access on the pods targeted by the service. Number must be in the range 1 to 65535. Name must be an IANA_SVC_NAME. If this is a string, it will be looked up as a named port in the target Pod's container ports. If this is not specified, the value of the 'port' field is used (an identity map). This field is ignored for services with clusterIP=None, and should be omitted or set equal to the 'port' field. More info: https://kubernetes.io/docs/concepts/services-networking/service/#defining-a-serviceSame definition as port

Type: boolean
publishNotReadyAddresses, when set to true, indicates that DNS implementations must publish the notReadyAddresses of subsets for the Endpoints associated with the Service. The default value is false. The primary use case for setting this field is to use a StatefulSet's Headless Service to propagate SRV records for its Pods without respect to their readiness for purpose of peer discovery.

Type: object
Route service traffic to pods with label keys and values matching this selector. If empty or not present, the service is assumed to have an external process managing its endpoints, which Kubernetes will not modify. Only applies to types ClusterIP, NodePort, and LoadBalancer. Ignored if type is ExternalName. More info: https://kubernetes.io/docs/concepts/services-networking/service/

Each additional property must conform to the following schema

Type: string

Type: string
Supports "ClientIP" and "None". Used to maintain session affinity. Enable client IP based session affinity. Must be ClientIP or None. Defaults to None. More info: https://kubernetes.io/docs/concepts/services-networking/service/#virtual-ips-and-service-proxies

Type: object
sessionAffinityConfig contains the configurations of session affinity.

Type: object
clientIP contains the configurations of Client IP based session affinity.Same definition as oneOf_i213

Type: string
type determines how the Service is exposed. Defaults to ClusterIP. Valid options are ExternalName, ClusterIP, NodePort, and LoadBalancer. "ExternalName" maps to the specified externalName. "ClusterIP" allocates a cluster-internal IP address for load-balancing to endpoints. Endpoints are determined by the selector or if that is not specified, by manual construction of an Endpoints object. If clusterIP is "None", no virtual IP is allocated and the endpoints are published as a set of endpoints rather than a stable IP. "NodePort" builds on ClusterIP and allocates a port on every node which routes to the clusterIP. "LoadBalancer" builds on NodePort and creates an external load-balancer (if supported in the current cloud) which routes to the clusterIP. More info: https://kubernetes.io/docs/concepts/services-networking/service/#publishing-services---service-types

Type: object
Most recently observed status of the service. Populated by the system. Read-only. More info: https://git.k8s.io/community/contributors/devel/api-conventions.md#spec-and-status

Type: object
LoadBalancer contains the current status of the load-balancer, if one is present.Same definition as oneOf_i272
Type: object
ServiceAccount binds together: * a name, understood by users, and perhaps by peripheral systems, for an identity * a principal that can be authenticated and authorized * a set of secrets

Type: string
APIVersion defines the versioned schema of this representation of an object. Servers should convert recognized schemas to the latest internal value, and may reject unrecognized values. More info: https://git.k8s.io/community/contributors/devel/api-conventions.md#resources

Type: boolean
AutomountServiceAccountToken indicates whether pods running as this service account should have an API token automatically mounted. Can be overridden at the pod level.

Type: array
ImagePullSecrets is a list of references to secrets in the same namespace to use for pulling any images in pods that reference this ServiceAccount. ImagePullSecrets are distinct from Secrets because Secrets can be mounted in the pod, but ImagePullSecrets are only accessed by the kubelet. More info: https://kubernetes.io/docs/concepts/containers/images/#specifying-imagepullsecrets-on-a-pod No Additional Items

Each item of this array must be:

Type: object
LocalObjectReference contains enough information to let you locate the referenced object inside the same namespace.Same definition as oneOf_i14_spec_template_spec_imagePullSecrets_items

Type: enum (of string)
Kind is a string value representing the REST resource this object represents. Servers may infer this from the endpoint the client submits requests to. Cannot be updated. In CamelCase. More info: https://git.k8s.io/community/contributors/devel/api-conventions.md#types-kinds

Must be one of:

  • "ServiceAccount"

Type: object
Standard object's metadata. More info: https://git.k8s.io/community/contributors/devel/api-conventions.md#metadataSame definition as metadata

Type: array
Secrets is the list of secrets allowed to be used by pods running using this ServiceAccount. More info: https://kubernetes.io/docs/concepts/configuration/secret No Additional Items

Each item of this array must be:

Type: object
ObjectReference contains enough information to let you inspect or modify the referred object.Same definition as oneOf_i182_status_active_items
Type: object
ServiceAccountList is a list of ServiceAccount objects

Type: string
APIVersion defines the versioned schema of this representation of an object. Servers should convert recognized schemas to the latest internal value, and may reject unrecognized values. More info: https://git.k8s.io/community/contributors/devel/api-conventions.md#resources

Type: array
List of ServiceAccounts. More info: https://kubernetes.io/docs/tasks/configure-pod-container/configure-service-account/ No Additional Items

Each item of this array must be:

Type: object
ServiceAccount binds together: * a name, understood by users, and perhaps by peripheral systems, for an identity * a principal that can be authenticated and authorized * a set of secretsSame definition as oneOf_i354

Type: enum (of string)
Kind is a string value representing the REST resource this object represents. Servers may infer this from the endpoint the client submits requests to. Cannot be updated. In CamelCase. More info: https://git.k8s.io/community/contributors/devel/api-conventions.md#types-kinds

Must be one of:

  • "ServiceAccountList"

Type: object
Standard list metadata. More info: https://git.k8s.io/community/contributors/devel/api-conventions.md#types-kindsSame definition as metadata
Type: object
ServiceAccountTokenProjection represents a projected service account token volume. This projection can be used to insert a service account token into the pods runtime filesystem for use against APIs (Kubernetes API Server or otherwise).Same definition as serviceAccountToken
Type: object
ServiceList holds a list of services.

Type: string
APIVersion defines the versioned schema of this representation of an object. Servers should convert recognized schemas to the latest internal value, and may reject unrecognized values. More info: https://git.k8s.io/community/contributors/devel/api-conventions.md#resources

Type: array
List of services No Additional Items

Each item of this array must be:

Type: object
Service is a named abstraction of software service (for example, mysql) consisting of local port (for example 3306) that the proxy listens on, and the selector that determines which pods will answer requests sent through the proxy.Same definition as oneOf_i353

Type: enum (of string)
Kind is a string value representing the REST resource this object represents. Servers may infer this from the endpoint the client submits requests to. Cannot be updated. In CamelCase. More info: https://git.k8s.io/community/contributors/devel/api-conventions.md#types-kinds

Must be one of:

  • "ServiceList"

Type: object
Standard list metadata. More info: https://git.k8s.io/community/contributors/devel/api-conventions.md#types-kindsSame definition as metadata
Type: object
ServicePort contains information on service's port.Same definition as oneOf_i353_spec_ports_items
Type: object
ServiceSpec describes the attributes that a user creates on a service.Same definition as spec
Type: object
ServiceStatus represents the current status of a service.Same definition as status
Type: object
SessionAffinityConfig represents the configurations of session affinity.Same definition as sessionAffinityConfig
Type: object
Represents a StorageOS persistent volume resource.Same definition as storageos
Type: object
Represents a StorageOS persistent volume resource.Same definition as storageos
Type: object
TCPSocketAction describes an action based on opening a socketSame definition as tcpSocket
Type: object
The node this Taint is attached to has the "effect" on any pod that does not tolerate the Taint.Same definition as oneOf_i280_spec_taints_items
Type: object
The pod this Toleration is attached to tolerates any taint that matches the triple using the matching operator .Same definition as oneOf_i14_spec_template_spec_tolerations_items
Type: object
A topology selector requirement is a selector that matches given label. This is an alpha feature and may change in the future.

Type: string
The label key that the selector applies to.

Type: array of string
An array of string values. One value must match the label to be selected. Each entry in Values is ORed. No Additional Items

Each item of this array must be:

Type: string
Type: object
A topology selector term represents the result of label queries. A null or empty topology selector term matches no objects. The requirements of them are ANDed. It provides a subset of functionality as NodeSelectorTerm. This is an alpha feature and may change in the future.

Type: array
A list of topology selector requirements by labels. No Additional Items

Each item of this array must be:

Type: object
A topology selector requirement is a selector that matches given label. This is an alpha feature and may change in the future.Same definition as oneOf_i368
Type: object
TypedLocalObjectReference contains enough information to let you locate the typed referenced object inside the same namespace.Same definition as dataSource
Type: object
Volume represents a named volume in a pod that may be accessed by any container in the pod.Same definition as oneOf_i14_spec_template_spec_volumes_items
Type: object
volumeDevice describes a mapping of a raw block device within a container.Same definition as oneOf_i14_spec_template_spec_containers_items_volumeDevices_items
Type: object
VolumeMount describes a mounting of a Volume within a container.Same definition as oneOf_i14_spec_template_spec_containers_items_volumeMounts_items
Type: object
VolumeNodeAffinity defines constraints that limit what nodes this volume can be accessed from.Same definition as nodeAffinity
Type: object
Projection that may be projected along with other supported volume typesSame definition as oneOf_i14_spec_template_spec_volumes_items_projected_sources_items
Type: object
Represents a vSphere volume resource.Same definition as vsphereVolume
Type: object
The weights of all of the matched WeightedPodAffinityTerm fields are added per-node to find the most preferred node(s)Same definition as oneOf_i14_spec_template_spec_affinity_podAffinity_preferredDuringSchedulingIgnoredDuringExecution_items
Type: object
Event is a report of an event somewhere in the cluster. It generally denotes some state change in the system.

Type: string
What action was taken/failed regarding to the regarding object.

Type: string
APIVersion defines the versioned schema of this representation of an object. Servers should convert recognized schemas to the latest internal value, and may reject unrecognized values. More info: https://git.k8s.io/community/contributors/devel/api-conventions.md#resources

Type: integerFormat: int32
Deprecated field assuring backward compatibility with core.v1 Event type

Type: string
Deprecated field assuring backward compatibility with core.v1 Event typeSame definition as creationTimestamp

Type: string
Deprecated field assuring backward compatibility with core.v1 Event typeSame definition as creationTimestamp

Type: object
Deprecated field assuring backward compatibility with core.v1 Event typeSame definition as source

Type: string
Required. Time when this Event was first observed.Same definition as acquireTime

Type: enum (of string)
Kind is a string value representing the REST resource this object represents. Servers may infer this from the endpoint the client submits requests to. Cannot be updated. In CamelCase. More info: https://git.k8s.io/community/contributors/devel/api-conventions.md#types-kinds

Must be one of:

  • "Event"

Type: object
ObjectMeta is metadata that all persisted resources must have, which includes all objects users must create.Same definition as metadata

Type: string
Optional. A human-readable description of the status of this operation. Maximal length of the note is 1kB, but libraries should be prepared to handle values up to 64kB.

Type: string
Why the action was taken.

Type: object
The object this Event is about. In most cases it's an Object reporting controller implements. E.g. ReplicaSetController implements ReplicaSets and this event is emitted because it acts on some changes in a ReplicaSet object.Same definition as oneOf_i182_status_active_items

Type: string
Name of the controller that emitted this Event, e.g. `kubernetes.io/kubelet`.

Type: string
ID of the controller instance, e.g. `kubelet-xyzf`.

Type: object
Data about the Event series this event represents or nil if it's a singleton Event.

Type: integerFormat: int32
Number of occurrences in this series up to the last heartbeat time

Type: string
Time when last Event from the series was seen before last heartbeat.Same definition as acquireTime

Type: string
Information whether this series is ongoing or finished.

Type: string
Type of this event (Normal, Warning), new types could be added in the future.
Type: object
EventList is a list of Event objects.

Type: string
APIVersion defines the versioned schema of this representation of an object. Servers should convert recognized schemas to the latest internal value, and may reject unrecognized values. More info: https://git.k8s.io/community/contributors/devel/api-conventions.md#resources

Type: array
Items is a list of schema objects. No Additional Items

Each item of this array must be:

Type: object
Event is a report of an event somewhere in the cluster. It generally denotes some state change in the system.Same definition as oneOf_i378

Type: enum (of string)
Kind is a string value representing the REST resource this object represents. Servers may infer this from the endpoint the client submits requests to. Cannot be updated. In CamelCase. More info: https://git.k8s.io/community/contributors/devel/api-conventions.md#types-kinds

Must be one of:

  • "EventList"

Type: object
Standard list metadata. More info: https://git.k8s.io/community/contributors/devel/api-conventions.md#metadataSame definition as metadata
Type: object
EventSeries contain information on series of events, i.e. thing that was/is happening continuously for some time.Same definition as series
Type: object
AllowedFlexVolume represents a single Flexvolume that is allowed to be used. Deprecated: use AllowedFlexVolume from policy API Group instead.

Type: string
driver is the name of the Flexvolume driver.
Type: object
AllowedHostPath defines the host volume conditions that will be enabled by a policy for pods to use. It requires the path prefix to be defined. Deprecated: use AllowedHostPath from policy API Group instead.

Type: string
pathPrefix is the path prefix that the host volume must match. It does not support `*`. Trailing slashes are trimmed when validating the path prefix with a host path. Examples: `/foo` would allow `/foo`, `/foo/` and `/foo/bar` `/foo` would not allow `/food` or `/etc/foo`

Type: boolean
when set to true, will allow host volumes matching the pathPrefix only if all volume mounts are readOnly.
Type: object
DEPRECATED - This group version of DaemonSet is deprecated by apps/v1beta2/DaemonSet. See the release notes for more information. DaemonSet represents the configuration of a daemon set.

Type: string
APIVersion defines the versioned schema of this representation of an object. Servers should convert recognized schemas to the latest internal value, and may reject unrecognized values. More info: https://git.k8s.io/community/contributors/devel/api-conventions.md#resources

Type: enum (of string)
Kind is a string value representing the REST resource this object represents. Servers may infer this from the endpoint the client submits requests to. Cannot be updated. In CamelCase. More info: https://git.k8s.io/community/contributors/devel/api-conventions.md#types-kinds

Must be one of:

  • "DaemonSet"

Type: object
Standard object's metadata. More info: https://git.k8s.io/community/contributors/devel/api-conventions.md#metadataSame definition as metadata

Type: object
The desired behavior of this daemon set. More info: https://git.k8s.io/community/contributors/devel/api-conventions.md#spec-and-status

Type: integerFormat: int32
The minimum number of seconds for which a newly created DaemonSet pod should be ready without any of its container crashing, for it to be considered available. Defaults to 0 (pod will be considered available as soon as it is ready).

Type: integerFormat: int32
The number of old history to retain to allow rollback. This is a pointer to distinguish between explicit zero and not specified. Defaults to 10.

Type: object
A label query over pods that are managed by the daemon set. Must match in order to be controlled. If empty, defaulted to labels on Pod template. More info: https://kubernetes.io/docs/concepts/overview/working-with-objects/labels/#label-selectorsSame definition as namespaceSelector

Type: object
An object that describes the pod that will be created. The DaemonSet will create exactly one copy of this pod on every node that matches the template's node selector (or on every node if no node selector is specified). More info: https://kubernetes.io/docs/concepts/workloads/controllers/replicationcontroller#pod-templateSame definition as template

Type: integerFormat: int64
DEPRECATED. A sequence number representing a specific generation of the template. Populated by the system. It can be set only during the creation.

Type: object
An update strategy to replace existing DaemonSet pods with new pods.

Type: object
Rolling update config params. Present only if type = "RollingUpdate".

Type: object
The maximum number of DaemonSet pods that can be unavailable during the update. Value can be an absolute number (ex: 5) or a percentage of total number of DaemonSet pods at the start of the update (ex: 10%). Absolute number is calculated from percentage by rounding up. This cannot be 0. Default value is 1. Example: when this is set to 30%, at most 30% of the total number of nodes that should be running the daemon pod (i.e. status.desiredNumberScheduled) can have their pods stopped for an update at any given time. The update starts by stopping at most 30% of those DaemonSet pods and then brings up new DaemonSet pods in their place. Once the new pods are available, it then proceeds onto other DaemonSet pods, thus ensuring that at least 70% of original number of DaemonSet pods are available at all times during the update.
Same definition as port

Type: string
Type of daemon set update. Can be "RollingUpdate" or "OnDelete". Default is OnDelete.

Type: object
The current status of this daemon set. This data may be out of date by some window of time. Populated by the system. Read-only. More info: https://git.k8s.io/community/contributors/devel/api-conventions.md#spec-and-status

Type: integerFormat: int32
Count of hash collisions for the DaemonSet. The DaemonSet controller uses this field as a collision avoidance mechanism when it needs to create the name for the newest ControllerRevision.

Type: array
Represents the latest available observations of a DaemonSet's current state. No Additional Items

Each item of this array must be:

Type: object
DaemonSetCondition describes the state of a DaemonSet at a certain point.

Type: string
Last time the condition transitioned from one status to another.Same definition as creationTimestamp

Type: string
A human readable message indicating details about the transition.

Type: string
The reason for the condition's last transition.

Type: string
Status of the condition, one of True, False, Unknown.

Type: string
Type of DaemonSet condition.

Type: integerFormat: int32
The number of nodes that are running at least 1 daemon pod and are supposed to run the daemon pod. More info: https://kubernetes.io/docs/concepts/workloads/controllers/daemonset/

Type: integerFormat: int32
The total number of nodes that should be running the daemon pod (including nodes correctly running the daemon pod). More info: https://kubernetes.io/docs/concepts/workloads/controllers/daemonset/

Type: integerFormat: int32
The number of nodes that should be running the daemon pod and have one or more of the daemon pod running and available (ready for at least spec.minReadySeconds)

Type: integerFormat: int32
The number of nodes that are running the daemon pod, but are not supposed to run the daemon pod. More info: https://kubernetes.io/docs/concepts/workloads/controllers/daemonset/

Type: integerFormat: int32
The number of nodes that should be running the daemon pod and have one or more of the daemon pod running and ready.

Type: integerFormat: int32
The number of nodes that should be running the daemon pod and have none of the daemon pod running and available (ready for at least spec.minReadySeconds)

Type: integerFormat: int64
The most recent generation observed by the daemon set controller.

Type: integerFormat: int32
The total number of nodes that are running updated daemon pod
Type: object
DaemonSetCondition describes the state of a DaemonSet at a certain point.Same definition as oneOf_i383_status_conditions_items
Type: object
DaemonSetList is a collection of daemon sets.

Type: string
APIVersion defines the versioned schema of this representation of an object. Servers should convert recognized schemas to the latest internal value, and may reject unrecognized values. More info: https://git.k8s.io/community/contributors/devel/api-conventions.md#resources

Type: array
A list of daemon sets. No Additional Items

Each item of this array must be:

Type: object
DEPRECATED - This group version of DaemonSet is deprecated by apps/v1beta2/DaemonSet. See the release notes for more information. DaemonSet represents the configuration of a daemon set.Same definition as oneOf_i383

Type: enum (of string)
Kind is a string value representing the REST resource this object represents. Servers may infer this from the endpoint the client submits requests to. Cannot be updated. In CamelCase. More info: https://git.k8s.io/community/contributors/devel/api-conventions.md#types-kinds

Must be one of:

  • "DaemonSetList"

Type: object
Standard list metadata. More info: https://git.k8s.io/community/contributors/devel/api-conventions.md#metadataSame definition as metadata
Type: object
DaemonSetSpec is the specification of a daemon set.Same definition as spec
Type: object
DaemonSetStatus represents the current status of a daemon set.Same definition as status
Type: object
DEPRECATED - This group version of Deployment is deprecated by apps/v1beta2/Deployment. See the release notes for more information. Deployment enables declarative updates for Pods and ReplicaSets.

Type: string
APIVersion defines the versioned schema of this representation of an object. Servers should convert recognized schemas to the latest internal value, and may reject unrecognized values. More info: https://git.k8s.io/community/contributors/devel/api-conventions.md#resources

Type: enum (of string)
Kind is a string value representing the REST resource this object represents. Servers may infer this from the endpoint the client submits requests to. Cannot be updated. In CamelCase. More info: https://git.k8s.io/community/contributors/devel/api-conventions.md#types-kinds

Must be one of:

  • "Deployment"

Type: object
Standard object metadata.Same definition as metadata

Type: object
Specification of the desired behavior of the Deployment.

Type: integerFormat: int32
Minimum number of seconds for which a newly created pod should be ready without any of its container crashing, for it to be considered available. Defaults to 0 (pod will be considered available as soon as it is ready)

Type: boolean
Indicates that the deployment is paused and will not be processed by the deployment controller.

Type: integerFormat: int32
The maximum time in seconds for a deployment to make progress before it is considered to be failed. The deployment controller will continue to process failed deployments and a condition with a ProgressDeadlineExceeded reason will be surfaced in the deployment status. Note that progress will not be estimated during the time a deployment is paused. This is set to the max value of int32 (i.e. 2147483647) by default, which means "no deadline".

Type: integerFormat: int32
Number of desired pods. This is a pointer to distinguish between explicit zero and not specified. Defaults to 1.

Type: integerFormat: int32
The number of old ReplicaSets to retain to allow rollback. This is a pointer to distinguish between explicit zero and not specified. This is set to the max value of int32 (i.e. 2147483647) by default, which means "retaining all old RelicaSets".

Type: object
DEPRECATED. The config this deployment is rolling back to. Will be cleared after rollback is done.

Type: integerFormat: int64
The revision to rollback to. If set to 0, rollback to the last revision.

Type: object
Label selector for pods. Existing ReplicaSets whose pods are selected by this will be the ones affected by this deployment.Same definition as namespaceSelector

Type: object
The deployment strategy to use to replace existing pods with new ones.

Type: object
Rolling update config params. Present only if DeploymentStrategyType = RollingUpdate.

Type: object
The maximum number of pods that can be scheduled above the desired number of pods. Value can be an absolute number (ex: 5) or a percentage of desired pods (ex: 10%). This can not be 0 if MaxUnavailable is 0. Absolute number is calculated from percentage by rounding up. By default, a value of 1 is used. Example: when this is set to 30%, the new RC can be scaled up immediately when the rolling update starts, such that the total number of old and new pods do not exceed 130% of desired pods. Once old pods have been killed, new RC can be scaled up further, ensuring that total number of pods running at any time during the update is atmost 130% of desired pods.
Same definition as port

Type: object
The maximum number of pods that can be unavailable during the update. Value can be an absolute number (ex: 5) or a percentage of desired pods (ex: 10%). Absolute number is calculated from percentage by rounding down. This can not be 0 if MaxSurge is 0. By default, a fixed value of 1 is used. Example: when this is set to 30%, the old RC can be scaled down to 70% of desired pods immediately when the rolling update starts. Once new pods are ready, old RC can be scaled down further, followed by scaling up the new RC, ensuring that the total number of pods available at all times during the update is at least 70% of desired pods.
Same definition as port

Type: string
Type of deployment. Can be "Recreate" or "RollingUpdate". Default is RollingUpdate.

Type: object
Template describes the pods that will be created.Same definition as template

Type: object
Most recently observed status of the Deployment.

Type: integerFormat: int32
Total number of available pods (ready for at least minReadySeconds) targeted by this deployment.

Type: integerFormat: int32
Count of hash collisions for the Deployment. The Deployment controller uses this field as a collision avoidance mechanism when it needs to create the name for the newest ReplicaSet.

Type: array
Represents the latest available observations of a deployment's current state. No Additional Items

Each item of this array must be:

Type: object
DeploymentCondition describes the state of a deployment at a certain point.

Type: string
Last time the condition transitioned from one status to another.Same definition as creationTimestamp

Type: string
The last time this condition was updated.Same definition as creationTimestamp

Type: string
A human readable message indicating details about the transition.

Type: string
The reason for the condition's last transition.

Type: string
Status of the condition, one of True, False, Unknown.

Type: string
Type of deployment condition.

Type: integerFormat: int64
The generation observed by the deployment controller.

Type: integerFormat: int32
Total number of ready pods targeted by this deployment.

Type: integerFormat: int32
Total number of non-terminated pods targeted by this deployment (their labels match the selector).

Type: integerFormat: int32
Total number of unavailable pods targeted by this deployment. This is the total number of pods that are still required for the deployment to have 100% available capacity. They may either be pods that are running but not yet available or pods that still have not been created.

Type: integerFormat: int32
Total number of non-terminated pods targeted by this deployment that have the desired template spec.
Type: object
DeploymentCondition describes the state of a deployment at a certain point.Same definition as oneOf_i389_status_conditions_items
Type: object
DeploymentList is a list of Deployments.

Type: string
APIVersion defines the versioned schema of this representation of an object. Servers should convert recognized schemas to the latest internal value, and may reject unrecognized values. More info: https://git.k8s.io/community/contributors/devel/api-conventions.md#resources

Type: array
Items is the list of Deployments. No Additional Items

Each item of this array must be:

Type: object
DEPRECATED - This group version of Deployment is deprecated by apps/v1beta2/Deployment. See the release notes for more information. Deployment enables declarative updates for Pods and ReplicaSets.Same definition as oneOf_i389

Type: enum (of string)
Kind is a string value representing the REST resource this object represents. Servers may infer this from the endpoint the client submits requests to. Cannot be updated. In CamelCase. More info: https://git.k8s.io/community/contributors/devel/api-conventions.md#types-kinds

Must be one of:

  • "DeploymentList"

Type: object
Standard list metadata.Same definition as metadata
Type: object
DEPRECATED. DeploymentRollback stores the information required to rollback a deployment.

Type: string
APIVersion defines the versioned schema of this representation of an object. Servers should convert recognized schemas to the latest internal value, and may reject unrecognized values. More info: https://git.k8s.io/community/contributors/devel/api-conventions.md#resources

Type: enum (of string)
Kind is a string value representing the REST resource this object represents. Servers may infer this from the endpoint the client submits requests to. Cannot be updated. In CamelCase. More info: https://git.k8s.io/community/contributors/devel/api-conventions.md#types-kinds

Must be one of:

  • "DeploymentRollback"

Type: string
Required: This must match the Name of a deployment.

Type: object
The config of this deployment rollback.Same definition as rollbackTo

Type: object
The annotations to be updated to a deployment

Each additional property must conform to the following schema

Type: string
Type: object
DeploymentSpec is the specification of the desired behavior of the Deployment.Same definition as spec
Type: object
DeploymentStatus is the most recently observed status of the Deployment.Same definition as status
Type: object
DeploymentStrategy describes how to replace existing pods with new ones.Same definition as strategy
Type: object
FSGroupStrategyOptions defines the strategy type and options used to create the strategy. Deprecated: use FSGroupStrategyOptions from policy API Group instead.

Type: array
ranges are the allowed ranges of fs groups. If you would like to force a single fs group then supply a single range with the same start and end. Required for MustRunAs. No Additional Items

Each item of this array must be:

Type: object
IDRange provides a min/max of an allowed range of IDs. Deprecated: use IDRange from policy API Group instead.

Type: integerFormat: int64
max is the end of the range, inclusive.

Type: integerFormat: int64
min is the start of the range, inclusive.

Type: string
rule is the strategy that will dictate what FSGroup is used in the SecurityContext.
Type: object
HTTPIngressPath associates a path regex with a backend. Incoming urls matching the path are forwarded to the backend.

Type: object
Backend defines the referenced service endpoint to which the traffic will be forwarded to.

Type: string
Specifies the name of the referenced service.

Type: object
Specifies the port of the referenced service.Same definition as port

Type: string
Path is an extended POSIX regex as defined by IEEE Std 1003.1, (i.e this follows the egrep/unix syntax, not the perl syntax) matched against the path of an incoming request. Currently it can contain characters disallowed from the conventional "path" part of a URL as defined by RFC 3986. Paths must begin with a '/'. If unspecified, the path defaults to a catch all sending traffic to the backend.
Type: object
HTTPIngressRuleValue is a list of http selectors pointing to backends. In the example: http:///? -> backend where where parts of the url correspond to RFC 3986, this resource will be used to match against everything after the last '/' and before the first '?' or '#'.

Type: array
A collection of paths that map requests to backends. No Additional Items

Each item of this array must be:

Type: object
HTTPIngressPath associates a path regex with a backend. Incoming urls matching the path are forwarded to the backend.Same definition as oneOf_i397
Type: object
HostPortRange defines a range of host ports that will be enabled by a policy for pods to use. It requires both the start and end to be defined. Deprecated: use HostPortRange from policy API Group instead.

Type: integerFormat: int32
max is the end of the range, inclusive.

Type: integerFormat: int32
min is the start of the range, inclusive.
Type: object
IDRange provides a min/max of an allowed range of IDs. Deprecated: use IDRange from policy API Group instead.Same definition as oneOf_i396_ranges_items
Type: object
DEPRECATED 1.9 - This group version of IPBlock is deprecated by networking/v1/IPBlock. IPBlock describes a particular CIDR (Ex. "192.168.1.1/24") that is allowed to the pods matched by a NetworkPolicySpec's podSelector. The except entry describes CIDRs that should not be included within this rule.

Type: string
CIDR is a string representing the IP Block Valid examples are "192.168.1.1/24"

Type: array of string
Except is a slice of CIDRs that should not be included within an IP Block Valid examples are "192.168.1.1/24" Except values will be rejected if they are outside the CIDR range No Additional Items

Each item of this array must be:

Type: string
Type: object
Ingress is a collection of rules that allow inbound connections to reach the endpoints defined by a backend. An Ingress can be configured to give services externally-reachable urls, load balance traffic, terminate SSL, offer name based virtual hosting etc.

Type: string
APIVersion defines the versioned schema of this representation of an object. Servers should convert recognized schemas to the latest internal value, and may reject unrecognized values. More info: https://git.k8s.io/community/contributors/devel/api-conventions.md#resources

Type: enum (of string)
Kind is a string value representing the REST resource this object represents. Servers may infer this from the endpoint the client submits requests to. Cannot be updated. In CamelCase. More info: https://git.k8s.io/community/contributors/devel/api-conventions.md#types-kinds

Must be one of:

  • "Ingress"

Type: object
Standard object's metadata. More info: https://git.k8s.io/community/contributors/devel/api-conventions.md#metadataSame definition as metadata

Type: object
Spec is the desired state of the Ingress. More info: https://git.k8s.io/community/contributors/devel/api-conventions.md#spec-and-status

Type: object
A default backend capable of servicing requests that don't match any rule. At least one of 'backend' or 'rules' must be specified. This field is optional to allow the loadbalancer controller or defaulting logic to specify a global default.Same definition as backend

Type: array
A list of host rules used to configure the Ingress. If unspecified, or no rule matches, all traffic is sent to the default backend. No Additional Items

Each item of this array must be:

Type: object
IngressRule represents the rules mapping the paths under a specified host to the related backend services. Incoming requests are first evaluated for a host match, then routed to the backend associated with the matching IngressRuleValue.

Type: string
Host is the fully qualified domain name of a network host, as defined by RFC 3986. Note the following deviations from the "host" part of the URI as defined in the RFC: 1. IPs are not allowed. Currently an IngressRuleValue can only apply to the IP in the Spec of the parent Ingress. 2. The `:` delimiter is not respected because ports are not allowed. Currently the port of an Ingress is implicitly :80 for http and :443 for https. Both these may change in the future. Incoming requests are matched against the host before the IngressRuleValue. If the host is unspecified, the Ingress routes all traffic based on the specified IngressRuleValue.

Type: object
HTTPIngressRuleValue is a list of http selectors pointing to backends. In the example: http:///? -> backend where where parts of the url correspond to RFC 3986, this resource will be used to match against everything after the last '/' and before the first '?' or '#'.Same definition as oneOf_i398

Type: array
TLS configuration. Currently the Ingress only supports a single TLS port, 443. If multiple members of this list specify different hosts, they will be multiplexed on the same port according to the hostname specified through the SNI TLS extension, if the ingress controller fulfilling the ingress supports SNI. No Additional Items

Each item of this array must be:

Type: object
IngressTLS describes the transport layer security associated with an Ingress.

Type: array of string
Hosts are a list of hosts included in the TLS certificate. The values in this list must match the name/s used in the tlsSecret. Defaults to the wildcard host setting for the loadbalancer controller fulfilling this Ingress, if left unspecified. No Additional Items

Each item of this array must be:

Type: string
SecretName is the name of the secret used to terminate SSL traffic on 443. Field is left optional to allow SSL routing based on SNI hostname alone. If the SNI host in a listener conflicts with the "Host" header field used by an IngressRule, the SNI host is used for termination and value of the Host header is used for routing.

Type: object
Status is the current state of the Ingress. More info: https://git.k8s.io/community/contributors/devel/api-conventions.md#spec-and-status

Type: object
LoadBalancer contains the current status of the load-balancer.Same definition as oneOf_i272
Type: object
IngressBackend describes all endpoints for a given service and port.Same definition as backend
Type: object
IngressList is a collection of Ingress.

Type: string
APIVersion defines the versioned schema of this representation of an object. Servers should convert recognized schemas to the latest internal value, and may reject unrecognized values. More info: https://git.k8s.io/community/contributors/devel/api-conventions.md#resources

Type: array
Items is the list of Ingress. No Additional Items

Each item of this array must be:

Type: object
Ingress is a collection of rules that allow inbound connections to reach the endpoints defined by a backend. An Ingress can be configured to give services externally-reachable urls, load balance traffic, terminate SSL, offer name based virtual hosting etc.Same definition as oneOf_i402

Type: enum (of string)
Kind is a string value representing the REST resource this object represents. Servers may infer this from the endpoint the client submits requests to. Cannot be updated. In CamelCase. More info: https://git.k8s.io/community/contributors/devel/api-conventions.md#types-kinds

Must be one of:

  • "IngressList"

Type: object
Standard object's metadata. More info: https://git.k8s.io/community/contributors/devel/api-conventions.md#metadataSame definition as metadata
Type: object
IngressRule represents the rules mapping the paths under a specified host to the related backend services. Incoming requests are first evaluated for a host match, then routed to the backend associated with the matching IngressRuleValue.Same definition as oneOf_i402_spec_rules_items
Type: object
IngressSpec describes the Ingress the user wishes to exist.Same definition as spec
Type: object
IngressStatus describe the current state of the Ingress.Same definition as status
Type: object
IngressTLS describes the transport layer security associated with an Ingress.Same definition as oneOf_i402_spec_tls_items
Type: object
DEPRECATED 1.9 - This group version of NetworkPolicy is deprecated by networking/v1/NetworkPolicy. NetworkPolicy describes what network traffic is allowed for a set of Pods

Type: string
APIVersion defines the versioned schema of this representation of an object. Servers should convert recognized schemas to the latest internal value, and may reject unrecognized values. More info: https://git.k8s.io/community/contributors/devel/api-conventions.md#resources

Type: enum (of string)
Kind is a string value representing the REST resource this object represents. Servers may infer this from the endpoint the client submits requests to. Cannot be updated. In CamelCase. More info: https://git.k8s.io/community/contributors/devel/api-conventions.md#types-kinds

Must be one of:

  • "NetworkPolicy"

Type: object
Standard object's metadata. More info: https://git.k8s.io/community/contributors/devel/api-conventions.md#metadataSame definition as metadata

Type: object
Specification of the desired behavior for this NetworkPolicy.

Type: array
List of egress rules to be applied to the selected pods. Outgoing traffic is allowed if there are no NetworkPolicies selecting the pod (and cluster policy otherwise allows the traffic), OR if the traffic matches at least one egress rule across all of the NetworkPolicy objects whose podSelector matches the pod. If this field is empty then this NetworkPolicy limits all outgoing traffic (and serves solely to ensure that the pods it selects are isolated by default). This field is beta-level in 1.8 No Additional Items

Each item of this array must be:

Type: object
DEPRECATED 1.9 - This group version of NetworkPolicyEgressRule is deprecated by networking/v1/NetworkPolicyEgressRule. NetworkPolicyEgressRule describes a particular set of traffic that is allowed out of pods matched by a NetworkPolicySpec's podSelector. The traffic must match both ports and to. This type is beta-level in 1.8

Type: array
List of destination ports for outgoing traffic. Each item in this list is combined using a logical OR. If this field is empty or missing, this rule matches all ports (traffic not restricted by port). If this field is present and contains at least one item, then this rule allows traffic only if the traffic matches at least one port in the list. No Additional Items

Each item of this array must be:

Type: object
DEPRECATED 1.9 - This group version of NetworkPolicyPort is deprecated by networking/v1/NetworkPolicyPort.

Type: object
If specified, the port on the given protocol. This can either be a numerical or named port on a pod. If this field is not provided, this matches all port names and numbers. If present, only traffic on the specified protocol AND port will be matched.Same definition as port

Type: string
Optional. The protocol (TCP, UDP, or SCTP) which traffic must match. If not specified, this field defaults to TCP.

Type: array
List of destinations for outgoing traffic of pods selected for this rule. Items in this list are combined using a logical OR operation. If this field is empty or missing, this rule matches all destinations (traffic not restricted by destination). If this field is present and contains at least one item, this rule allows traffic only if the traffic matches at least one item in the to list. No Additional Items

Each item of this array must be:

Type: object
DEPRECATED 1.9 - This group version of NetworkPolicyPeer is deprecated by networking/v1/NetworkPolicyPeer.

Type: object
IPBlock defines policy on a particular IPBlock. If this field is set then neither of the other fields can be.Same definition as oneOf_i401

Type: object
Selects Namespaces using cluster-scoped labels. This field follows standard label selector semantics; if present but empty, it selects all namespaces. If PodSelector is also set, then the NetworkPolicyPeer as a whole selects the Pods matching PodSelector in the Namespaces selected by NamespaceSelector. Otherwise it selects all Pods in the Namespaces selected by NamespaceSelector.Same definition as namespaceSelector

Type: object
This is a label selector which selects Pods. This field follows standard label selector semantics; if present but empty, it selects all pods. If NamespaceSelector is also set, then the NetworkPolicyPeer as a whole selects the Pods matching PodSelector in the Namespaces selected by NamespaceSelector. Otherwise it selects the Pods matching PodSelector in the policy's own Namespace.Same definition as namespaceSelector

Type: array
List of ingress rules to be applied to the selected pods. Traffic is allowed to a pod if there are no NetworkPolicies selecting the pod OR if the traffic source is the pod's local node, OR if the traffic matches at least one ingress rule across all of the NetworkPolicy objects whose podSelector matches the pod. If this field is empty then this NetworkPolicy does not allow any traffic (and serves solely to ensure that the pods it selects are isolated by default). No Additional Items

Each item of this array must be:

Type: object
DEPRECATED 1.9 - This group version of NetworkPolicyIngressRule is deprecated by networking/v1/NetworkPolicyIngressRule. This NetworkPolicyIngressRule matches traffic if and only if the traffic matches both ports AND from.

Type: array
List of sources which should be able to access the pods selected for this rule. Items in this list are combined using a logical OR operation. If this field is empty or missing, this rule matches all sources (traffic not restricted by source). If this field is present and contains at least on item, this rule allows traffic only if the traffic matches at least one item in the from list. No Additional Items

Each item of this array must be:

Type: object
DEPRECATED 1.9 - This group version of NetworkPolicyPeer is deprecated by networking/v1/NetworkPolicyPeer.Same definition as oneOf_i409_spec_egress_items_to_items

Type: array
List of ports which should be made accessible on the pods selected for this rule. Each item in this list is combined using a logical OR. If this field is empty or missing, this rule matches all ports (traffic not restricted by port). If this field is present and contains at least one item, then this rule allows traffic only if the traffic matches at least one port in the list. No Additional Items

Each item of this array must be:

Type: object
DEPRECATED 1.9 - This group version of NetworkPolicyPort is deprecated by networking/v1/NetworkPolicyPort.Same definition as oneOf_i409_spec_egress_items_ports_items

Type: object
Selects the pods to which this NetworkPolicy object applies. The array of ingress rules is applied to any pods selected by this field. Multiple network policies can select the same set of pods. In this case, the ingress rules for each are combined additively. This field is NOT optional and follows standard label selector semantics. An empty podSelector matches all pods in this namespace.Same definition as namespaceSelector

Type: array of string
List of rule types that the NetworkPolicy relates to. Valid options are Ingress, Egress, or Ingress,Egress. If this field is not specified, it will default based on the existence of Ingress or Egress rules; policies that contain an Egress section are assumed to affect Egress, and all policies (whether or not they contain an Ingress section) are assumed to affect Ingress. If you want to write an egress-only policy, you must explicitly specify policyTypes [ "Egress" ]. Likewise, if you want to write a policy that specifies that no egress is allowed, you must specify a policyTypes value that include "Egress" (since such a policy would not include an Egress section and would otherwise default to just [ "Ingress" ]). This field is beta-level in 1.8
No Additional Items

Each item of this array must be:

Type: object
DEPRECATED 1.9 - This group version of NetworkPolicyEgressRule is deprecated by networking/v1/NetworkPolicyEgressRule. NetworkPolicyEgressRule describes a particular set of traffic that is allowed out of pods matched by a NetworkPolicySpec's podSelector. The traffic must match both ports and to. This type is beta-level in 1.8Same definition as oneOf_i409_spec_egress_items
Type: object
DEPRECATED 1.9 - This group version of NetworkPolicyIngressRule is deprecated by networking/v1/NetworkPolicyIngressRule. This NetworkPolicyIngressRule matches traffic if and only if the traffic matches both ports AND from.Same definition as oneOf_i409_spec_ingress_items
Type: object
DEPRECATED 1.9 - This group version of NetworkPolicyList is deprecated by networking/v1/NetworkPolicyList. Network Policy List is a list of NetworkPolicy objects.

Type: string
APIVersion defines the versioned schema of this representation of an object. Servers should convert recognized schemas to the latest internal value, and may reject unrecognized values. More info: https://git.k8s.io/community/contributors/devel/api-conventions.md#resources

Type: array
Items is a list of schema objects. No Additional Items

Each item of this array must be:

Type: object
DEPRECATED 1.9 - This group version of NetworkPolicy is deprecated by networking/v1/NetworkPolicy. NetworkPolicy describes what network traffic is allowed for a set of PodsSame definition as oneOf_i409

Type: enum (of string)
Kind is a string value representing the REST resource this object represents. Servers may infer this from the endpoint the client submits requests to. Cannot be updated. In CamelCase. More info: https://git.k8s.io/community/contributors/devel/api-conventions.md#types-kinds

Must be one of:

  • "NetworkPolicyList"

Type: object
Standard list metadata. More info: https://git.k8s.io/community/contributors/devel/api-conventions.md#metadataSame definition as metadata
Type: object
DEPRECATED 1.9 - This group version of NetworkPolicyPeer is deprecated by networking/v1/NetworkPolicyPeer.Same definition as oneOf_i409_spec_egress_items_to_items
Type: object
DEPRECATED 1.9 - This group version of NetworkPolicyPort is deprecated by networking/v1/NetworkPolicyPort.Same definition as oneOf_i409_spec_egress_items_ports_items
Type: object
DEPRECATED 1.9 - This group version of NetworkPolicySpec is deprecated by networking/v1/NetworkPolicySpec.Same definition as spec
Type: object
PodSecurityPolicy governs the ability to make requests that affect the Security Context that will be applied to a pod and container. Deprecated: use PodSecurityPolicy from policy API Group instead.

Type: string
APIVersion defines the versioned schema of this representation of an object. Servers should convert recognized schemas to the latest internal value, and may reject unrecognized values. More info: https://git.k8s.io/community/contributors/devel/api-conventions.md#resources

Type: enum (of string)
Kind is a string value representing the REST resource this object represents. Servers may infer this from the endpoint the client submits requests to. Cannot be updated. In CamelCase. More info: https://git.k8s.io/community/contributors/devel/api-conventions.md#types-kinds

Must be one of:

  • "PodSecurityPolicy"

Type: object
Standard object's metadata. More info: https://git.k8s.io/community/contributors/devel/api-conventions.md#metadataSame definition as metadata

Type: object
spec defines the policy enforced.

Type: boolean
allowPrivilegeEscalation determines if a pod can request to allow privilege escalation. If unspecified, defaults to true.

Type: array of string
allowedCapabilities is a list of capabilities that can be requested to add to the container. Capabilities in this field may be added at the pod author's discretion. You must not list a capability in both allowedCapabilities and requiredDropCapabilities. No Additional Items

Each item of this array must be:

Type: array
allowedFlexVolumes is a whitelist of allowed Flexvolumes. Empty or nil indicates that all Flexvolumes may be used. This parameter is effective only when the usage of the Flexvolumes is allowed in the "volumes" field. No Additional Items

Each item of this array must be:

Type: object
AllowedFlexVolume represents a single Flexvolume that is allowed to be used. Deprecated: use AllowedFlexVolume from policy API Group instead.Same definition as oneOf_i381

Type: array
allowedHostPaths is a white list of allowed host paths. Empty indicates that all host paths may be used. No Additional Items

Each item of this array must be:

Type: object
AllowedHostPath defines the host volume conditions that will be enabled by a policy for pods to use. It requires the path prefix to be defined. Deprecated: use AllowedHostPath from policy API Group instead.Same definition as oneOf_i382

Type: array of string
AllowedProcMountTypes is a whitelist of allowed ProcMountTypes. Empty or nil indicates that only the DefaultProcMountType may be used. This requires the ProcMountType feature flag to be enabled. No Additional Items

Each item of this array must be:

Type: array of string
allowedUnsafeSysctls is a list of explicitly allowed unsafe sysctls, defaults to none. Each entry is either a plain sysctl name or ends in "*" in which case it is considered as a prefix of allowed sysctls. Single * means all unsafe sysctls are allowed. Kubelet has to whitelist all allowed unsafe sysctls explicitly to avoid rejection. Examples: e.g. "foo/*" allows "foo/bar", "foo/baz", etc. e.g. "foo.*" allows "foo.bar", "foo.baz", etc.
No Additional Items

Each item of this array must be:

Type: array of string
defaultAddCapabilities is the default set of capabilities that will be added to the container unless the pod spec specifically drops the capability. You may not list a capability in both defaultAddCapabilities and requiredDropCapabilities. Capabilities added here are implicitly allowed, and need not be included in the allowedCapabilities list. No Additional Items

Each item of this array must be:

Type: boolean
defaultAllowPrivilegeEscalation controls the default setting for whether a process can gain more privileges than its parent process.

Type: array of string
forbiddenSysctls is a list of explicitly forbidden sysctls, defaults to none. Each entry is either a plain sysctl name or ends in "*" in which case it is considered as a prefix of forbidden sysctls. Single * means all sysctls are forbidden. Examples: e.g. "foo/*" forbids "foo/bar", "foo/baz", etc. e.g. "foo.*" forbids "foo.bar", "foo.baz", etc. No Additional Items

Each item of this array must be:

Type: object
fsGroup is the strategy that will dictate what fs group is used by the SecurityContext.Same definition as oneOf_i396

Type: boolean
hostIPC determines if the policy allows the use of HostIPC in the pod spec.

Type: boolean
hostNetwork determines if the policy allows the use of HostNetwork in the pod spec.

Type: boolean
hostPID determines if the policy allows the use of HostPID in the pod spec.

Type: array
hostPorts determines which host port ranges are allowed to be exposed. No Additional Items

Each item of this array must be:

Type: object
HostPortRange defines a range of host ports that will be enabled by a policy for pods to use. It requires both the start and end to be defined. Deprecated: use HostPortRange from policy API Group instead.Same definition as oneOf_i399

Type: boolean
privileged determines if a pod can request to be run as privileged.

Type: boolean
readOnlyRootFilesystem when set to true will force containers to run with a read only root file system. If the container specifically requests to run with a non-read only root file system the PSP should deny the pod. If set to false the container may run with a read only root file system if it wishes but it will not be forced to.

Type: array of string
requiredDropCapabilities are the capabilities that will be dropped from the container. These are required to be dropped and cannot be added. No Additional Items

Each item of this array must be:

Type: object
RunAsGroup is the strategy that will dictate the allowable RunAsGroup values that may be set. If this field is omitted, the pod's RunAsGroup can take any value. This field requires the RunAsGroup feature gate to be enabled.

Type: array
ranges are the allowed ranges of gids that may be used. If you would like to force a single gid then supply a single range with the same start and end. Required for MustRunAs. No Additional Items

Each item of this array must be:

Type: object
IDRange provides a min/max of an allowed range of IDs. Deprecated: use IDRange from policy API Group instead.Same definition as oneOf_i396_ranges_items

Type: string
rule is the strategy that will dictate the allowable RunAsGroup values that may be set.

Type: object
runAsUser is the strategy that will dictate the allowable RunAsUser values that may be set.

Type: array
ranges are the allowed ranges of uids that may be used. If you would like to force a single uid then supply a single range with the same start and end. Required for MustRunAs. No Additional Items

Each item of this array must be:

Type: object
IDRange provides a min/max of an allowed range of IDs. Deprecated: use IDRange from policy API Group instead.Same definition as oneOf_i396_ranges_items

Type: string
rule is the strategy that will dictate the allowable RunAsUser values that may be set.

Type: object
seLinux is the strategy that will dictate the allowable labels that may be set.

Type: string
rule is the strategy that will dictate the allowable labels that may be set.

Type: object
seLinuxOptions required to run as; required for MustRunAs More info: https://kubernetes.io/docs/tasks/configure-pod-container/security-context/Same definition as seLinuxOptions

Type: object
supplementalGroups is the strategy that will dictate what supplemental groups are used by the SecurityContext.

Type: array
ranges are the allowed ranges of supplemental groups. If you would like to force a single supplemental group then supply a single range with the same start and end. Required for MustRunAs. No Additional Items

Each item of this array must be:

Type: object
IDRange provides a min/max of an allowed range of IDs. Deprecated: use IDRange from policy API Group instead.Same definition as oneOf_i396_ranges_items

Type: string
rule is the strategy that will dictate what supplemental groups is used in the SecurityContext.

Type: array of string
volumes is a white list of allowed volume plugins. Empty indicates that no volumes may be used. To allow all volumes you may use '*'. No Additional Items

Each item of this array must be:

Type: object
PodSecurityPolicyList is a list of PodSecurityPolicy objects. Deprecated: use PodSecurityPolicyList from policy API Group instead.

Type: string
APIVersion defines the versioned schema of this representation of an object. Servers should convert recognized schemas to the latest internal value, and may reject unrecognized values. More info: https://git.k8s.io/community/contributors/devel/api-conventions.md#resources

Type: array
items is a list of schema objects. No Additional Items

Each item of this array must be:

Type: object
PodSecurityPolicy governs the ability to make requests that affect the Security Context that will be applied to a pod and container. Deprecated: use PodSecurityPolicy from policy API Group instead.Same definition as oneOf_i416

Type: enum (of string)
Kind is a string value representing the REST resource this object represents. Servers may infer this from the endpoint the client submits requests to. Cannot be updated. In CamelCase. More info: https://git.k8s.io/community/contributors/devel/api-conventions.md#types-kinds

Must be one of:

  • "PodSecurityPolicyList"

Type: object
Standard list metadata. More info: https://git.k8s.io/community/contributors/devel/api-conventions.md#metadataSame definition as metadata
Type: object
PodSecurityPolicySpec defines the policy enforced. Deprecated: use PodSecurityPolicySpec from policy API Group instead.Same definition as spec
Type: object
DEPRECATED - This group version of ReplicaSet is deprecated by apps/v1beta2/ReplicaSet. See the release notes for more information. ReplicaSet ensures that a specified number of pod replicas are running at any given time.

Type: string
APIVersion defines the versioned schema of this representation of an object. Servers should convert recognized schemas to the latest internal value, and may reject unrecognized values. More info: https://git.k8s.io/community/contributors/devel/api-conventions.md#resources

Type: enum (of string)
Kind is a string value representing the REST resource this object represents. Servers may infer this from the endpoint the client submits requests to. Cannot be updated. In CamelCase. More info: https://git.k8s.io/community/contributors/devel/api-conventions.md#types-kinds

Must be one of:

  • "ReplicaSet"

Type: object
If the Labels of a ReplicaSet are empty, they are defaulted to be the same as the Pod(s) that the ReplicaSet manages. Standard object's metadata. More info: https://git.k8s.io/community/contributors/devel/api-conventions.md#metadataSame definition as metadata

Type: object
Spec defines the specification of the desired behavior of the ReplicaSet. More info: https://git.k8s.io/community/contributors/devel/api-conventions.md#spec-and-status

Type: integerFormat: int32
Minimum number of seconds for which a newly created pod should be ready without any of its container crashing, for it to be considered available. Defaults to 0 (pod will be considered available as soon as it is ready)

Type: integerFormat: int32
Replicas is the number of desired replicas. This is a pointer to distinguish between explicit zero and unspecified. Defaults to 1. More info: https://kubernetes.io/docs/concepts/workloads/controllers/replicationcontroller/#what-is-a-replicationcontroller

Type: object
Selector is a label query over pods that should match the replica count. If the selector is empty, it is defaulted to the labels present on the pod template. Label keys and values that must match in order to be controlled by this replica set. More info: https://kubernetes.io/docs/concepts/overview/working-with-objects/labels/#label-selectorsSame definition as namespaceSelector

Type: object
Template is the object that describes the pod that will be created if insufficient replicas are detected. More info: https://kubernetes.io/docs/concepts/workloads/controllers/replicationcontroller#pod-templateSame definition as template

Type: object
Status is the most recently observed status of the ReplicaSet. This data may be out of date by some window of time. Populated by the system. Read-only. More info: https://git.k8s.io/community/contributors/devel/api-conventions.md#spec-and-status

Type: integerFormat: int32
The number of available replicas (ready for at least minReadySeconds) for this replica set.

Type: array
Represents the latest available observations of a replica set's current state. No Additional Items

Each item of this array must be:

Type: object
ReplicaSetCondition describes the state of a replica set at a certain point.

Type: string
The last time the condition transitioned from one status to another.Same definition as creationTimestamp

Type: string
A human readable message indicating details about the transition.

Type: string
The reason for the condition's last transition.

Type: string
Status of the condition, one of True, False, Unknown.

Type: string
Type of replica set condition.

Type: integerFormat: int32
The number of pods that have labels matching the labels of the pod template of the replicaset.

Type: integerFormat: int64
ObservedGeneration reflects the generation of the most recently observed ReplicaSet.

Type: integerFormat: int32
The number of ready replicas for this replica set.

Type: integerFormat: int32
Replicas is the most recently oberved number of replicas. More info: https://kubernetes.io/docs/concepts/workloads/controllers/replicationcontroller/#what-is-a-replicationcontroller
Type: object
ReplicaSetCondition describes the state of a replica set at a certain point.Same definition as oneOf_i419_status_conditions_items
Type: object
ReplicaSetList is a collection of ReplicaSets.

Type: string
APIVersion defines the versioned schema of this representation of an object. Servers should convert recognized schemas to the latest internal value, and may reject unrecognized values. More info: https://git.k8s.io/community/contributors/devel/api-conventions.md#resources

Type: array
List of ReplicaSets. More info: https://kubernetes.io/docs/concepts/workloads/controllers/replicationcontroller No Additional Items

Each item of this array must be:

Type: object
DEPRECATED - This group version of ReplicaSet is deprecated by apps/v1beta2/ReplicaSet. See the release notes for more information. ReplicaSet ensures that a specified number of pod replicas are running at any given time.Same definition as oneOf_i419

Type: enum (of string)
Kind is a string value representing the REST resource this object represents. Servers may infer this from the endpoint the client submits requests to. Cannot be updated. In CamelCase. More info: https://git.k8s.io/community/contributors/devel/api-conventions.md#types-kinds

Must be one of:

  • "ReplicaSetList"

Type: object
Standard list metadata. More info: https://git.k8s.io/community/contributors/devel/api-conventions.md#types-kindsSame definition as metadata
Type: object
ReplicaSetSpec is the specification of a ReplicaSet.Same definition as spec
Type: object
ReplicaSetStatus represents the current status of a ReplicaSet.Same definition as status
Type: object
Spec to control the desired behavior of daemon set rolling update.Same definition as rollingUpdate
Type: object
Spec to control the desired behavior of rolling update.Same definition as rollingUpdate
Type: object
RunAsGroupStrategyOptions defines the strategy type and any options used to create the strategy. Deprecated: use RunAsGroupStrategyOptions from policy API Group instead.Same definition as runAsGroup
Type: object
RunAsUserStrategyOptions defines the strategy type and any options used to create the strategy. Deprecated: use RunAsUserStrategyOptions from policy API Group instead.Same definition as runAsUser
Type: object
SELinuxStrategyOptions defines the strategy type and any options used to create the strategy. Deprecated: use SELinuxStrategyOptions from policy API Group instead.Same definition as seLinux
Type: object
represents a scaling request for a resource.

Type: string
APIVersion defines the versioned schema of this representation of an object. Servers should convert recognized schemas to the latest internal value, and may reject unrecognized values. More info: https://git.k8s.io/community/contributors/devel/api-conventions.md#resources

Type: enum (of string)
Kind is a string value representing the REST resource this object represents. Servers may infer this from the endpoint the client submits requests to. Cannot be updated. In CamelCase. More info: https://git.k8s.io/community/contributors/devel/api-conventions.md#types-kinds

Must be one of:

  • "Scale"

Type: object
Standard object metadata; More info: https://git.k8s.io/community/contributors/devel/api-conventions.md#metadata.Same definition as metadata

Type: object
defines the behavior of the scale. More info: https://git.k8s.io/community/contributors/devel/api-conventions.md#spec-and-status.

Type: integerFormat: int32
desired number of instances for the scaled object.

Type: object
current status of the scale. More info: https://git.k8s.io/community/contributors/devel/api-conventions.md#spec-and-status. Read-only.

Type: integerFormat: int32
actual number of observed instances of the scaled object.

Type: object
label query over pods that should match the replicas count. More info: http://kubernetes.io/docs/user-guide/labels#label-selectors

Each additional property must conform to the following schema

Type: string

Type: string
label selector for pods that should match the replicas count. This is a serializated version of both map-based and more expressive set-based selectors. This is done to avoid introspection in the clients. The string will be in the same format as the query-param syntax. If the target type only supports map-based selectors, both this field and map-based selector field are populated. More info: https://kubernetes.io/docs/concepts/overview/working-with-objects/labels/#label-selectors
Type: object
describes the attributes of a scale subresourceSame definition as spec
Type: object
represents the current status of a scale subresource.Same definition as status
Type: object
SupplementalGroupsStrategyOptions defines the strategy type and options used to create the strategy. Deprecated: use SupplementalGroupsStrategyOptions from policy API Group instead.Same definition as supplementalGroups
Type: object
IPBlock describes a particular CIDR (Ex. "192.168.1.1/24") that is allowed to the pods matched by a NetworkPolicySpec's podSelector. The except entry describes CIDRs that should not be included within this rule.

Type: string
CIDR is a string representing the IP Block Valid examples are "192.168.1.1/24"

Type: array of string
Except is a slice of CIDRs that should not be included within an IP Block Valid examples are "192.168.1.1/24" Except values will be rejected if they are outside the CIDR range No Additional Items

Each item of this array must be:

Type: string
Type: object
NetworkPolicy describes what network traffic is allowed for a set of Pods

Type: string
APIVersion defines the versioned schema of this representation of an object. Servers should convert recognized schemas to the latest internal value, and may reject unrecognized values. More info: https://git.k8s.io/community/contributors/devel/api-conventions.md#resources

Type: enum (of string)
Kind is a string value representing the REST resource this object represents. Servers may infer this from the endpoint the client submits requests to. Cannot be updated. In CamelCase. More info: https://git.k8s.io/community/contributors/devel/api-conventions.md#types-kinds

Must be one of:

  • "NetworkPolicy"

Type: object
Standard object's metadata. More info: https://git.k8s.io/community/contributors/devel/api-conventions.md#metadataSame definition as metadata

Type: object
Specification of the desired behavior for this NetworkPolicy.

Type: array
List of egress rules to be applied to the selected pods. Outgoing traffic is allowed if there are no NetworkPolicies selecting the pod (and cluster policy otherwise allows the traffic), OR if the traffic matches at least one egress rule across all of the NetworkPolicy objects whose podSelector matches the pod. If this field is empty then this NetworkPolicy limits all outgoing traffic (and serves solely to ensure that the pods it selects are isolated by default). This field is beta-level in 1.8 No Additional Items

Each item of this array must be:

Type: object
NetworkPolicyEgressRule describes a particular set of traffic that is allowed out of pods matched by a NetworkPolicySpec's podSelector. The traffic must match both ports and to. This type is beta-level in 1.8

Type: array
List of destination ports for outgoing traffic. Each item in this list is combined using a logical OR. If this field is empty or missing, this rule matches all ports (traffic not restricted by port). If this field is present and contains at least one item, then this rule allows traffic only if the traffic matches at least one port in the list. No Additional Items

Each item of this array must be:

Type: object
NetworkPolicyPort describes a port to allow traffic on

Type: object
The port on the given protocol. This can either be a numerical or named port on a pod. If this field is not provided, this matches all port names and numbers.Same definition as port

Type: string
The protocol (TCP, UDP, or SCTP) which traffic must match. If not specified, this field defaults to TCP.

Type: array
List of destinations for outgoing traffic of pods selected for this rule. Items in this list are combined using a logical OR operation. If this field is empty or missing, this rule matches all destinations (traffic not restricted by destination). If this field is present and contains at least one item, this rule allows traffic only if the traffic matches at least one item in the to list. No Additional Items

Each item of this array must be:

Type: object
NetworkPolicyPeer describes a peer to allow traffic from. Only certain combinations of fields are allowed

Type: object
IPBlock defines policy on a particular IPBlock. If this field is set then neither of the other fields can be.Same definition as oneOf_i434

Type: object
Selects Namespaces using cluster-scoped labels. This field follows standard label selector semantics; if present but empty, it selects all namespaces. If PodSelector is also set, then the NetworkPolicyPeer as a whole selects the Pods matching PodSelector in the Namespaces selected by NamespaceSelector. Otherwise it selects all Pods in the Namespaces selected by NamespaceSelector.Same definition as namespaceSelector

Type: object
This is a label selector which selects Pods. This field follows standard label selector semantics; if present but empty, it selects all pods. If NamespaceSelector is also set, then the NetworkPolicyPeer as a whole selects the Pods matching PodSelector in the Namespaces selected by NamespaceSelector. Otherwise it selects the Pods matching PodSelector in the policy's own Namespace.Same definition as namespaceSelector

Type: array
List of ingress rules to be applied to the selected pods. Traffic is allowed to a pod if there are no NetworkPolicies selecting the pod (and cluster policy otherwise allows the traffic), OR if the traffic source is the pod's local node, OR if the traffic matches at least one ingress rule across all of the NetworkPolicy objects whose podSelector matches the pod. If this field is empty then this NetworkPolicy does not allow any traffic (and serves solely to ensure that the pods it selects are isolated by default) No Additional Items

Each item of this array must be:

Type: object
NetworkPolicyIngressRule describes a particular set of traffic that is allowed to the pods matched by a NetworkPolicySpec's podSelector. The traffic must match both ports and from.

Type: array
List of sources which should be able to access the pods selected for this rule. Items in this list are combined using a logical OR operation. If this field is empty or missing, this rule matches all sources (traffic not restricted by source). If this field is present and contains at least on item, this rule allows traffic only if the traffic matches at least one item in the from list. No Additional Items

Each item of this array must be:

Type: object
NetworkPolicyPeer describes a peer to allow traffic from. Only certain combinations of fields are allowedSame definition as oneOf_i435_spec_egress_items_to_items

Type: array
List of ports which should be made accessible on the pods selected for this rule. Each item in this list is combined using a logical OR. If this field is empty or missing, this rule matches all ports (traffic not restricted by port). If this field is present and contains at least one item, then this rule allows traffic only if the traffic matches at least one port in the list. No Additional Items

Each item of this array must be:

Type: object
Selects the pods to which this NetworkPolicy object applies. The array of ingress rules is applied to any pods selected by this field. Multiple network policies can select the same set of pods. In this case, the ingress rules for each are combined additively. This field is NOT optional and follows standard label selector semantics. An empty podSelector matches all pods in this namespace.Same definition as namespaceSelector

Type: array of string
List of rule types that the NetworkPolicy relates to. Valid options are Ingress, Egress, or Ingress,Egress. If this field is not specified, it will default based on the existence of Ingress or Egress rules; policies that contain an Egress section are assumed to affect Egress, and all policies (whether or not they contain an Ingress section) are assumed to affect Ingress. If you want to write an egress-only policy, you must explicitly specify policyTypes [ "Egress" ]. Likewise, if you want to write a policy that specifies that no egress is allowed, you must specify a policyTypes value that include "Egress" (since such a policy would not include an Egress section and would otherwise default to just [ "Ingress" ]). This field is beta-level in 1.8
No Additional Items

Each item of this array must be:

Type: object
NetworkPolicyEgressRule describes a particular set of traffic that is allowed out of pods matched by a NetworkPolicySpec's podSelector. The traffic must match both ports and to. This type is beta-level in 1.8Same definition as oneOf_i435_spec_egress_items
Type: object
NetworkPolicyIngressRule describes a particular set of traffic that is allowed to the pods matched by a NetworkPolicySpec's podSelector. The traffic must match both ports and from.Same definition as oneOf_i435_spec_ingress_items
Type: object
NetworkPolicyList is a list of NetworkPolicy objects.

Type: string
APIVersion defines the versioned schema of this representation of an object. Servers should convert recognized schemas to the latest internal value, and may reject unrecognized values. More info: https://git.k8s.io/community/contributors/devel/api-conventions.md#resources

Type: array
Items is a list of schema objects. No Additional Items

Each item of this array must be:

Type: object
NetworkPolicy describes what network traffic is allowed for a set of PodsSame definition as oneOf_i435

Type: enum (of string)
Kind is a string value representing the REST resource this object represents. Servers may infer this from the endpoint the client submits requests to. Cannot be updated. In CamelCase. More info: https://git.k8s.io/community/contributors/devel/api-conventions.md#types-kinds

Must be one of:

  • "NetworkPolicyList"

Type: object
Standard list metadata. More info: https://git.k8s.io/community/contributors/devel/api-conventions.md#metadataSame definition as metadata
Type: object
NetworkPolicyPeer describes a peer to allow traffic from. Only certain combinations of fields are allowedSame definition as oneOf_i435_spec_egress_items_to_items
Type: object
NetworkPolicyPort describes a port to allow traffic onSame definition as oneOf_i435_spec_egress_items_ports_items
Type: object
NetworkPolicySpec provides the specification of a NetworkPolicySame definition as spec
Type: object
AllowedFlexVolume represents a single Flexvolume that is allowed to be used.

Type: string
driver is the name of the Flexvolume driver.
Type: object
AllowedHostPath defines the host volume conditions that will be enabled by a policy for pods to use. It requires the path prefix to be defined.

Type: string
pathPrefix is the path prefix that the host volume must match. It does not support `*`. Trailing slashes are trimmed when validating the path prefix with a host path. Examples: `/foo` would allow `/foo`, `/foo/` and `/foo/bar` `/foo` would not allow `/food` or `/etc/foo`

Type: boolean
when set to true, will allow host volumes matching the pathPrefix only if all volume mounts are readOnly.
Type: object
Eviction evicts a pod from its node subject to certain policies and safety constraints. This is a subresource of Pod. A request to cause such an eviction is created by POSTing to .../pods//evictions.

Type: string
APIVersion defines the versioned schema of this representation of an object. Servers should convert recognized schemas to the latest internal value, and may reject unrecognized values. More info: https://git.k8s.io/community/contributors/devel/api-conventions.md#resources

Type: object
DeleteOptions may be provided

Type: string
APIVersion defines the versioned schema of this representation of an object. Servers should convert recognized schemas to the latest internal value, and may reject unrecognized values. More info: https://git.k8s.io/community/contributors/devel/api-conventions.md#resources

Type: array of string
When present, indicates that modifications should not be persisted. An invalid or unrecognized dryRun directive will result in an error response and no further processing of the request. Valid values are: - All: all dry run stages will be processed No Additional Items

Each item of this array must be:

Type: integerFormat: int64
The duration in seconds before the object should be deleted. Value must be non-negative integer. The value zero indicates delete immediately. If this value is nil, the default grace period for the specified type will be used. Defaults to a per object value if not specified. zero means delete immediately.

Type: enum (of string)
Kind is a string value representing the REST resource this object represents. Servers may infer this from the endpoint the client submits requests to. Cannot be updated. In CamelCase. More info: https://git.k8s.io/community/contributors/devel/api-conventions.md#types-kinds

Must be one of:

  • "DeleteOptions"

Type: boolean
Deprecated: please use the PropagationPolicy, this field will be deprecated in 1.7. Should the dependent objects be orphaned. If true/false, the "orphan" finalizer will be added to/removed from the object's finalizers list. Either this field or PropagationPolicy may be set, but not both.

Type: object
Must be fulfilled before a deletion is carried out. If not possible, a 409 Conflict status will be returned.

Type: string
Specifies the target UID.

Type: string
Whether and how garbage collection will be performed. Either this field or OrphanDependents may be set, but not both. The default policy is decided by the existing finalizer set in the metadata.finalizers and the resource-specific default policy. Acceptable values are: 'Orphan' - orphan the dependents; 'Background' - allow the garbage collector to delete the dependents in the background; 'Foreground' - a cascading policy that deletes all dependents in the foreground.

Type: enum (of string)
Kind is a string value representing the REST resource this object represents. Servers may infer this from the endpoint the client submits requests to. Cannot be updated. In CamelCase. More info: https://git.k8s.io/community/contributors/devel/api-conventions.md#types-kinds

Must be one of:

  • "Eviction"

Type: object
ObjectMeta describes the pod that is being evicted.Same definition as metadata
Type: object
FSGroupStrategyOptions defines the strategy type and options used to create the strategy.

Type: array
ranges are the allowed ranges of fs groups. If you would like to force a single fs group then supply a single range with the same start and end. Required for MustRunAs. No Additional Items

Each item of this array must be:

Type: object
IDRange provides a min/max of an allowed range of IDs.

Type: integerFormat: int64
max is the end of the range, inclusive.

Type: integerFormat: int64
min is the start of the range, inclusive.

Type: string
rule is the strategy that will dictate what FSGroup is used in the SecurityContext.
Type: object
HostPortRange defines a range of host ports that will be enabled by a policy for pods to use. It requires both the start and end to be defined.

Type: integerFormat: int32
max is the end of the range, inclusive.

Type: integerFormat: int32
min is the start of the range, inclusive.
Type: object
IDRange provides a min/max of an allowed range of IDs.Same definition as oneOf_i445_ranges_items
Type: object
PodDisruptionBudget is an object to define the max disruption that can be caused to a collection of pods

Type: string
APIVersion defines the versioned schema of this representation of an object. Servers should convert recognized schemas to the latest internal value, and may reject unrecognized values. More info: https://git.k8s.io/community/contributors/devel/api-conventions.md#resources

Type: enum (of string)
Kind is a string value representing the REST resource this object represents. Servers may infer this from the endpoint the client submits requests to. Cannot be updated. In CamelCase. More info: https://git.k8s.io/community/contributors/devel/api-conventions.md#types-kinds

Must be one of:

  • "PodDisruptionBudget"

Type: object
ObjectMeta is metadata that all persisted resources must have, which includes all objects users must create.Same definition as metadata

Type: object
Specification of the desired behavior of the PodDisruptionBudget.

Type: object
An eviction is allowed if at most "maxUnavailable" pods selected by "selector" are unavailable after the eviction, i.e. even in absence of the evicted pod. For example, one can prevent all voluntary evictions by specifying 0. This is a mutually exclusive setting with "minAvailable".Same definition as port

Type: object
An eviction is allowed if at least "minAvailable" pods selected by "selector" will still be available after the eviction, i.e. even in the absence of the evicted pod. So for example you can prevent all voluntary evictions by specifying "100%".Same definition as port

Type: object
Label query over pods whose evictions are managed by the disruption budget.Same definition as namespaceSelector

Type: object
Most recently observed status of the PodDisruptionBudget.

Type: integerFormat: int32
current number of healthy pods

Type: integerFormat: int32
minimum desired number of healthy pods

Type: object
DisruptedPods contains information about pods whose eviction was processed by the API server eviction subresource handler but has not yet been observed by the PodDisruptionBudget controller. A pod will be in this map from the time when the API server processed the eviction request to the time when the pod is seen by PDB controller as having been marked for deletion (or after a timeout). The key in the map is the name of the pod and the value is the time when the API server processed the eviction request. If the deletion didn't occur and a pod is still there it will be removed from the list automatically by PodDisruptionBudget controller after some time. If everything goes smooth this map should be empty for the most of the time. Large number of entries in the map may indicate problems with pod deletions.

Each additional property must conform to the following schema

Type: string
Time is a wrapper around time.Time which supports correct marshaling to YAML and JSON. Wrappers are provided for many of the factory methods that the time package offers.Same definition as creationTimestamp

Type: integerFormat: int32
Number of pod disruptions that are currently allowed.

Type: integerFormat: int32
total number of pods counted by this disruption budget

Type: integerFormat: int64
Most recent generation observed when updating this PDB status. PodDisruptionsAllowed and other status informatio is valid only if observedGeneration equals to PDB's object generation.
Type: object
PodDisruptionBudgetList is a collection of PodDisruptionBudgets.

Type: string
APIVersion defines the versioned schema of this representation of an object. Servers should convert recognized schemas to the latest internal value, and may reject unrecognized values. More info: https://git.k8s.io/community/contributors/devel/api-conventions.md#resources

Type: array
No Additional Items

Each item of this array must be:

Type: object
PodDisruptionBudget is an object to define the max disruption that can be caused to a collection of podsSame definition as oneOf_i448

Type: enum (of string)
Kind is a string value representing the REST resource this object represents. Servers may infer this from the endpoint the client submits requests to. Cannot be updated. In CamelCase. More info: https://git.k8s.io/community/contributors/devel/api-conventions.md#types-kinds

Must be one of:

  • "PodDisruptionBudgetList"

Type: object
ListMeta describes metadata that synthetic resources must have, including lists and various status objects. A resource may have only one of {ObjectMeta, ListMeta}.Same definition as metadata
Type: object
PodDisruptionBudgetSpec is a description of a PodDisruptionBudget.Same definition as spec
Type: object
PodDisruptionBudgetStatus represents information about the status of a PodDisruptionBudget. Status may trail the actual state of a system.Same definition as status
Type: object
PodSecurityPolicy governs the ability to make requests that affect the Security Context that will be applied to a pod and container.

Type: string
APIVersion defines the versioned schema of this representation of an object. Servers should convert recognized schemas to the latest internal value, and may reject unrecognized values. More info: https://git.k8s.io/community/contributors/devel/api-conventions.md#resources

Type: enum (of string)
Kind is a string value representing the REST resource this object represents. Servers may infer this from the endpoint the client submits requests to. Cannot be updated. In CamelCase. More info: https://git.k8s.io/community/contributors/devel/api-conventions.md#types-kinds

Must be one of:

  • "PodSecurityPolicy"

Type: object
Standard object's metadata. More info: https://git.k8s.io/community/contributors/devel/api-conventions.md#metadataSame definition as metadata

Type: object
spec defines the policy enforced.

Type: boolean
allowPrivilegeEscalation determines if a pod can request to allow privilege escalation. If unspecified, defaults to true.

Type: array of string
allowedCapabilities is a list of capabilities that can be requested to add to the container. Capabilities in this field may be added at the pod author's discretion. You must not list a capability in both allowedCapabilities and requiredDropCapabilities. No Additional Items

Each item of this array must be:

Type: array
allowedFlexVolumes is a whitelist of allowed Flexvolumes. Empty or nil indicates that all Flexvolumes may be used. This parameter is effective only when the usage of the Flexvolumes is allowed in the "volumes" field. No Additional Items

Each item of this array must be:

Type: object
AllowedFlexVolume represents a single Flexvolume that is allowed to be used.Same definition as oneOf_i442

Type: array
allowedHostPaths is a white list of allowed host paths. Empty indicates that all host paths may be used. No Additional Items

Each item of this array must be:

Type: object
AllowedHostPath defines the host volume conditions that will be enabled by a policy for pods to use. It requires the path prefix to be defined.Same definition as oneOf_i443

Type: array of string
AllowedProcMountTypes is a whitelist of allowed ProcMountTypes. Empty or nil indicates that only the DefaultProcMountType may be used. This requires the ProcMountType feature flag to be enabled. No Additional Items

Each item of this array must be:

Type: array of string
allowedUnsafeSysctls is a list of explicitly allowed unsafe sysctls, defaults to none. Each entry is either a plain sysctl name or ends in "*" in which case it is considered as a prefix of allowed sysctls. Single * means all unsafe sysctls are allowed. Kubelet has to whitelist all allowed unsafe sysctls explicitly to avoid rejection. Examples: e.g. "foo/*" allows "foo/bar", "foo/baz", etc. e.g. "foo.*" allows "foo.bar", "foo.baz", etc.
No Additional Items

Each item of this array must be:

Type: array of string
defaultAddCapabilities is the default set of capabilities that will be added to the container unless the pod spec specifically drops the capability. You may not list a capability in both defaultAddCapabilities and requiredDropCapabilities. Capabilities added here are implicitly allowed, and need not be included in the allowedCapabilities list. No Additional Items

Each item of this array must be:

Type: boolean
defaultAllowPrivilegeEscalation controls the default setting for whether a process can gain more privileges than its parent process.

Type: array of string
forbiddenSysctls is a list of explicitly forbidden sysctls, defaults to none. Each entry is either a plain sysctl name or ends in "*" in which case it is considered as a prefix of forbidden sysctls. Single * means all sysctls are forbidden. Examples: e.g. "foo/*" forbids "foo/bar", "foo/baz", etc. e.g. "foo.*" forbids "foo.bar", "foo.baz", etc. No Additional Items

Each item of this array must be:

Type: object
fsGroup is the strategy that will dictate what fs group is used by the SecurityContext.Same definition as oneOf_i445

Type: boolean
hostIPC determines if the policy allows the use of HostIPC in the pod spec.

Type: boolean
hostNetwork determines if the policy allows the use of HostNetwork in the pod spec.

Type: boolean
hostPID determines if the policy allows the use of HostPID in the pod spec.

Type: array
hostPorts determines which host port ranges are allowed to be exposed. No Additional Items

Each item of this array must be:

Type: object
HostPortRange defines a range of host ports that will be enabled by a policy for pods to use. It requires both the start and end to be defined.Same definition as oneOf_i446

Type: boolean
privileged determines if a pod can request to be run as privileged.

Type: boolean
readOnlyRootFilesystem when set to true will force containers to run with a read only root file system. If the container specifically requests to run with a non-read only root file system the PSP should deny the pod. If set to false the container may run with a read only root file system if it wishes but it will not be forced to.

Type: array of string
requiredDropCapabilities are the capabilities that will be dropped from the container. These are required to be dropped and cannot be added. No Additional Items

Each item of this array must be:

Type: object
RunAsGroup is the strategy that will dictate the allowable RunAsGroup values that may be set. If this field is omitted, the pod's RunAsGroup can take any value. This field requires the RunAsGroup feature gate to be enabled.

Type: array
ranges are the allowed ranges of gids that may be used. If you would like to force a single gid then supply a single range with the same start and end. Required for MustRunAs. No Additional Items

Each item of this array must be:

Type: object
IDRange provides a min/max of an allowed range of IDs.Same definition as oneOf_i445_ranges_items

Type: string
rule is the strategy that will dictate the allowable RunAsGroup values that may be set.

Type: object
runAsUser is the strategy that will dictate the allowable RunAsUser values that may be set.

Type: array
ranges are the allowed ranges of uids that may be used. If you would like to force a single uid then supply a single range with the same start and end. Required for MustRunAs. No Additional Items

Each item of this array must be:

Type: object
IDRange provides a min/max of an allowed range of IDs.Same definition as oneOf_i445_ranges_items

Type: string
rule is the strategy that will dictate the allowable RunAsUser values that may be set.

Type: object
seLinux is the strategy that will dictate the allowable labels that may be set.

Type: string
rule is the strategy that will dictate the allowable labels that may be set.

Type: object
seLinuxOptions required to run as; required for MustRunAs More info: https://kubernetes.io/docs/tasks/configure-pod-container/security-context/Same definition as seLinuxOptions

Type: object
supplementalGroups is the strategy that will dictate what supplemental groups are used by the SecurityContext.

Type: array
ranges are the allowed ranges of supplemental groups. If you would like to force a single supplemental group then supply a single range with the same start and end. Required for MustRunAs. No Additional Items

Each item of this array must be:

Type: object
IDRange provides a min/max of an allowed range of IDs.Same definition as oneOf_i445_ranges_items

Type: string
rule is the strategy that will dictate what supplemental groups is used in the SecurityContext.

Type: array of string
volumes is a white list of allowed volume plugins. Empty indicates that no volumes may be used. To allow all volumes you may use '*'. No Additional Items

Each item of this array must be:

Type: object
PodSecurityPolicyList is a list of PodSecurityPolicy objects.

Type: string
APIVersion defines the versioned schema of this representation of an object. Servers should convert recognized schemas to the latest internal value, and may reject unrecognized values. More info: https://git.k8s.io/community/contributors/devel/api-conventions.md#resources

Type: array
items is a list of schema objects. No Additional Items

Each item of this array must be:

Type: object
PodSecurityPolicy governs the ability to make requests that affect the Security Context that will be applied to a pod and container.Same definition as oneOf_i452

Type: enum (of string)
Kind is a string value representing the REST resource this object represents. Servers may infer this from the endpoint the client submits requests to. Cannot be updated. In CamelCase. More info: https://git.k8s.io/community/contributors/devel/api-conventions.md#types-kinds

Must be one of:

  • "PodSecurityPolicyList"

Type: object
Standard list metadata. More info: https://git.k8s.io/community/contributors/devel/api-conventions.md#metadataSame definition as metadata
Type: object
PodSecurityPolicySpec defines the policy enforced.Same definition as spec
Type: object
RunAsGroupStrategyOptions defines the strategy type and any options used to create the strategy.Same definition as runAsGroup
Type: object
RunAsUserStrategyOptions defines the strategy type and any options used to create the strategy.Same definition as runAsUser
Type: object
SELinuxStrategyOptions defines the strategy type and any options used to create the strategy.Same definition as seLinux
Type: object
SupplementalGroupsStrategyOptions defines the strategy type and options used to create the strategy.Same definition as supplementalGroups
Type: object
AggregationRule describes how to locate ClusterRoles to aggregate into the ClusterRole

Type: array
ClusterRoleSelectors holds a list of selectors which will be used to find ClusterRoles and create the rules. If any of the selectors match, then the ClusterRole's permissions will be added No Additional Items

Each item of this array must be:

Type: object
A label selector is a label query over a set of resources. The result of matchLabels and matchExpressions are ANDed. An empty label selector matches all objects. A null label selector matches no objects.Same definition as namespaceSelector
Type: object
ClusterRole is a cluster level, logical grouping of PolicyRules that can be referenced as a unit by a RoleBinding or ClusterRoleBinding.

Type: object
AggregationRule is an optional field that describes how to build the Rules for this ClusterRole. If AggregationRule is set, then the Rules are controller managed and direct changes to Rules will be stomped by the controller.Same definition as oneOf_i459

Type: string
APIVersion defines the versioned schema of this representation of an object. Servers should convert recognized schemas to the latest internal value, and may reject unrecognized values. More info: https://git.k8s.io/community/contributors/devel/api-conventions.md#resources

Type: enum (of string)
Kind is a string value representing the REST resource this object represents. Servers may infer this from the endpoint the client submits requests to. Cannot be updated. In CamelCase. More info: https://git.k8s.io/community/contributors/devel/api-conventions.md#types-kinds

Must be one of:

  • "ClusterRole"

Type: object
Standard object's metadata.Same definition as metadata

Type: array
Rules holds all the PolicyRules for this ClusterRole No Additional Items

Each item of this array must be:

Type: object
PolicyRule holds information that describes a policy rule, but does not contain information about who the rule applies to or which namespace the rule applies to.

Type: array of string
APIGroups is the name of the APIGroup that contains the resources. If multiple API groups are specified, any action requested against one of the enumerated resources in any API group will be allowed. No Additional Items

Each item of this array must be:

Type: array of string
NonResourceURLs is a set of partial urls that a user should have access to. *s are allowed, but only as the full, final step in the path Since non-resource URLs are not namespaced, this field is only applicable for ClusterRoles referenced from a ClusterRoleBinding. Rules can either apply to API resources (such as "pods" or "secrets") or non-resource URL paths (such as "/api"), but not both. No Additional Items

Each item of this array must be:

Type: array of string
ResourceNames is an optional white list of names that the rule applies to. An empty set means that everything is allowed. No Additional Items

Each item of this array must be:

Type: array of string
Resources is a list of resources this rule applies to. ResourceAll represents all resources. No Additional Items

Each item of this array must be:

Type: array of string
Verbs is a list of Verbs that apply to ALL the ResourceKinds and AttributeRestrictions contained in this rule. VerbAll represents all kinds. No Additional Items

Each item of this array must be:

Type: object
ClusterRoleBinding references a ClusterRole, but not contain it. It can reference a ClusterRole in the global namespace, and adds who information via Subject.

Type: string
APIVersion defines the versioned schema of this representation of an object. Servers should convert recognized schemas to the latest internal value, and may reject unrecognized values. More info: https://git.k8s.io/community/contributors/devel/api-conventions.md#resources

Type: enum (of string)
Kind is a string value representing the REST resource this object represents. Servers may infer this from the endpoint the client submits requests to. Cannot be updated. In CamelCase. More info: https://git.k8s.io/community/contributors/devel/api-conventions.md#types-kinds

Must be one of:

  • "ClusterRoleBinding"

Type: object
Standard object's metadata.Same definition as metadata

Type: object
RoleRef can only reference a ClusterRole in the global namespace. If the RoleRef cannot be resolved, the Authorizer must return an error.

Type: string
APIGroup is the group for the resource being referenced

Type: string
Kind is the type of resource being referenced

Type: string
Name is the name of resource being referenced

Type: array
Subjects holds references to the objects the role applies to. No Additional Items

Each item of this array must be:

Type: object
Subject contains a reference to the object or user identities a role binding applies to. This can either hold a direct API object reference, or a value for non-objects such as user and group names.

Type: string
APIGroup holds the API group of the referenced subject. Defaults to "" for ServiceAccount subjects. Defaults to "rbac.authorization.k8s.io" for User and Group subjects.

Type: string
Kind of object being referenced. Values defined by this API group are "User", "Group", and "ServiceAccount". If the Authorizer does not recognized the kind value, the Authorizer should report an error.

Type: string
Name of the object being referenced.

Type: string
Namespace of the referenced object. If the object kind is non-namespace, such as "User" or "Group", and this value is not empty the Authorizer should report an error.
Type: object
ClusterRoleBindingList is a collection of ClusterRoleBindings

Type: string
APIVersion defines the versioned schema of this representation of an object. Servers should convert recognized schemas to the latest internal value, and may reject unrecognized values. More info: https://git.k8s.io/community/contributors/devel/api-conventions.md#resources

Type: array
Items is a list of ClusterRoleBindings No Additional Items

Each item of this array must be:

Type: object
ClusterRoleBinding references a ClusterRole, but not contain it. It can reference a ClusterRole in the global namespace, and adds who information via Subject.Same definition as oneOf_i461

Type: enum (of string)
Kind is a string value representing the REST resource this object represents. Servers may infer this from the endpoint the client submits requests to. Cannot be updated. In CamelCase. More info: https://git.k8s.io/community/contributors/devel/api-conventions.md#types-kinds

Must be one of:

  • "ClusterRoleBindingList"

Type: object
Standard object's metadata.Same definition as metadata
Type: object
ClusterRoleList is a collection of ClusterRoles

Type: string
APIVersion defines the versioned schema of this representation of an object. Servers should convert recognized schemas to the latest internal value, and may reject unrecognized values. More info: https://git.k8s.io/community/contributors/devel/api-conventions.md#resources

Type: array
Items is a list of ClusterRoles No Additional Items

Each item of this array must be:

Type: object
ClusterRole is a cluster level, logical grouping of PolicyRules that can be referenced as a unit by a RoleBinding or ClusterRoleBinding.Same definition as oneOf_i460

Type: enum (of string)
Kind is a string value representing the REST resource this object represents. Servers may infer this from the endpoint the client submits requests to. Cannot be updated. In CamelCase. More info: https://git.k8s.io/community/contributors/devel/api-conventions.md#types-kinds

Must be one of:

  • "ClusterRoleList"

Type: object
Standard object's metadata.Same definition as metadata
Type: object
PolicyRule holds information that describes a policy rule, but does not contain information about who the rule applies to or which namespace the rule applies to.Same definition as oneOf_i460_rules_items
Type: object
Role is a namespaced, logical grouping of PolicyRules that can be referenced as a unit by a RoleBinding.

Type: string
APIVersion defines the versioned schema of this representation of an object. Servers should convert recognized schemas to the latest internal value, and may reject unrecognized values. More info: https://git.k8s.io/community/contributors/devel/api-conventions.md#resources

Type: enum (of string)
Kind is a string value representing the REST resource this object represents. Servers may infer this from the endpoint the client submits requests to. Cannot be updated. In CamelCase. More info: https://git.k8s.io/community/contributors/devel/api-conventions.md#types-kinds

Must be one of:

  • "Role"

Type: object
Standard object's metadata.Same definition as metadata

Type: array
Rules holds all the PolicyRules for this Role No Additional Items

Each item of this array must be:

Type: object
PolicyRule holds information that describes a policy rule, but does not contain information about who the rule applies to or which namespace the rule applies to.Same definition as oneOf_i460_rules_items
Type: object
RoleBinding references a role, but does not contain it. It can reference a Role in the same namespace or a ClusterRole in the global namespace. It adds who information via Subjects and namespace information by which namespace it exists in. RoleBindings in a given namespace only have effect in that namespace.

Type: string
APIVersion defines the versioned schema of this representation of an object. Servers should convert recognized schemas to the latest internal value, and may reject unrecognized values. More info: https://git.k8s.io/community/contributors/devel/api-conventions.md#resources

Type: enum (of string)
Kind is a string value representing the REST resource this object represents. Servers may infer this from the endpoint the client submits requests to. Cannot be updated. In CamelCase. More info: https://git.k8s.io/community/contributors/devel/api-conventions.md#types-kinds

Must be one of:

  • "RoleBinding"

Type: object
Standard object's metadata.Same definition as metadata

Type: object
RoleRef can reference a Role in the current namespace or a ClusterRole in the global namespace. If the RoleRef cannot be resolved, the Authorizer must return an error.Same definition as roleRef

Type: array
Subjects holds references to the objects the role applies to. No Additional Items

Each item of this array must be:

Type: object
Subject contains a reference to the object or user identities a role binding applies to. This can either hold a direct API object reference, or a value for non-objects such as user and group names.Same definition as oneOf_i461_subjects_items
Type: object
RoleBindingList is a collection of RoleBindings

Type: string
APIVersion defines the versioned schema of this representation of an object. Servers should convert recognized schemas to the latest internal value, and may reject unrecognized values. More info: https://git.k8s.io/community/contributors/devel/api-conventions.md#resources

Type: array
Items is a list of RoleBindings No Additional Items

Each item of this array must be:

Type: object
RoleBinding references a role, but does not contain it. It can reference a Role in the same namespace or a ClusterRole in the global namespace. It adds who information via Subjects and namespace information by which namespace it exists in. RoleBindings in a given namespace only have effect in that namespace.Same definition as oneOf_i466

Type: enum (of string)
Kind is a string value representing the REST resource this object represents. Servers may infer this from the endpoint the client submits requests to. Cannot be updated. In CamelCase. More info: https://git.k8s.io/community/contributors/devel/api-conventions.md#types-kinds

Must be one of:

  • "RoleBindingList"

Type: object
Standard object's metadata.Same definition as metadata
Type: object
RoleList is a collection of Roles

Type: string
APIVersion defines the versioned schema of this representation of an object. Servers should convert recognized schemas to the latest internal value, and may reject unrecognized values. More info: https://git.k8s.io/community/contributors/devel/api-conventions.md#resources

Type: array
Items is a list of Roles No Additional Items

Each item of this array must be:

Type: object
Role is a namespaced, logical grouping of PolicyRules that can be referenced as a unit by a RoleBinding.Same definition as oneOf_i465

Type: enum (of string)
Kind is a string value representing the REST resource this object represents. Servers may infer this from the endpoint the client submits requests to. Cannot be updated. In CamelCase. More info: https://git.k8s.io/community/contributors/devel/api-conventions.md#types-kinds

Must be one of:

  • "RoleList"

Type: object
Standard object's metadata.Same definition as metadata
Type: object
RoleRef contains information that points to the role being usedSame definition as roleRef
Type: object
Subject contains a reference to the object or user identities a role binding applies to. This can either hold a direct API object reference, or a value for non-objects such as user and group names.Same definition as oneOf_i461_subjects_items
Type: object
AggregationRule describes how to locate ClusterRoles to aggregate into the ClusterRole

Type: array
ClusterRoleSelectors holds a list of selectors which will be used to find ClusterRoles and create the rules. If any of the selectors match, then the ClusterRole's permissions will be added No Additional Items

Each item of this array must be:

Type: object
A label selector is a label query over a set of resources. The result of matchLabels and matchExpressions are ANDed. An empty label selector matches all objects. A null label selector matches no objects.Same definition as namespaceSelector
Type: object
ClusterRole is a cluster level, logical grouping of PolicyRules that can be referenced as a unit by a RoleBinding or ClusterRoleBinding.

Type: object
AggregationRule is an optional field that describes how to build the Rules for this ClusterRole. If AggregationRule is set, then the Rules are controller managed and direct changes to Rules will be stomped by the controller.Same definition as oneOf_i471

Type: string
APIVersion defines the versioned schema of this representation of an object. Servers should convert recognized schemas to the latest internal value, and may reject unrecognized values. More info: https://git.k8s.io/community/contributors/devel/api-conventions.md#resources

Type: enum (of string)
Kind is a string value representing the REST resource this object represents. Servers may infer this from the endpoint the client submits requests to. Cannot be updated. In CamelCase. More info: https://git.k8s.io/community/contributors/devel/api-conventions.md#types-kinds

Must be one of:

  • "ClusterRole"

Type: object
Standard object's metadata.Same definition as metadata

Type: array
Rules holds all the PolicyRules for this ClusterRole No Additional Items

Each item of this array must be:

Type: object
PolicyRule holds information that describes a policy rule, but does not contain information about who the rule applies to or which namespace the rule applies to.

Type: array of string
APIGroups is the name of the APIGroup that contains the resources. If multiple API groups are specified, any action requested against one of the enumerated resources in any API group will be allowed. No Additional Items

Each item of this array must be:

Type: array of string
NonResourceURLs is a set of partial urls that a user should have access to. *s are allowed, but only as the full, final step in the path This name is intentionally different than the internal type so that the DefaultConvert works nicely and because the ordering may be different. Since non-resource URLs are not namespaced, this field is only applicable for ClusterRoles referenced from a ClusterRoleBinding. Rules can either apply to API resources (such as "pods" or "secrets") or non-resource URL paths (such as "/api"), but not both. No Additional Items

Each item of this array must be:

Type: array of string
ResourceNames is an optional white list of names that the rule applies to. An empty set means that everything is allowed. No Additional Items

Each item of this array must be:

Type: array of string
Resources is a list of resources this rule applies to. ResourceAll represents all resources. No Additional Items

Each item of this array must be:

Type: array of string
Verbs is a list of Verbs that apply to ALL the ResourceKinds and AttributeRestrictions contained in this rule. VerbAll represents all kinds. No Additional Items

Each item of this array must be:

Type: object
ClusterRoleBinding references a ClusterRole, but not contain it. It can reference a ClusterRole in the global namespace, and adds who information via Subject.

Type: string
APIVersion defines the versioned schema of this representation of an object. Servers should convert recognized schemas to the latest internal value, and may reject unrecognized values. More info: https://git.k8s.io/community/contributors/devel/api-conventions.md#resources

Type: enum (of string)
Kind is a string value representing the REST resource this object represents. Servers may infer this from the endpoint the client submits requests to. Cannot be updated. In CamelCase. More info: https://git.k8s.io/community/contributors/devel/api-conventions.md#types-kinds

Must be one of:

  • "ClusterRoleBinding"

Type: object
Standard object's metadata.Same definition as metadata

Type: object
RoleRef can only reference a ClusterRole in the global namespace. If the RoleRef cannot be resolved, the Authorizer must return an error.

Type: string
APIGroup is the group for the resource being referenced

Type: string
Kind is the type of resource being referenced

Type: string
Name is the name of resource being referenced

Type: array
Subjects holds references to the objects the role applies to. No Additional Items

Each item of this array must be:

Type: object
Subject contains a reference to the object or user identities a role binding applies to. This can either hold a direct API object reference, or a value for non-objects such as user and group names.

Type: string
APIVersion holds the API group and version of the referenced subject. Defaults to "v1" for ServiceAccount subjects. Defaults to "rbac.authorization.k8s.io/v1alpha1" for User and Group subjects.

Type: string
Kind of object being referenced. Values defined by this API group are "User", "Group", and "ServiceAccount". If the Authorizer does not recognized the kind value, the Authorizer should report an error.

Type: string
Name of the object being referenced.

Type: string
Namespace of the referenced object. If the object kind is non-namespace, such as "User" or "Group", and this value is not empty the Authorizer should report an error.
Type: object
ClusterRoleBindingList is a collection of ClusterRoleBindings

Type: string
APIVersion defines the versioned schema of this representation of an object. Servers should convert recognized schemas to the latest internal value, and may reject unrecognized values. More info: https://git.k8s.io/community/contributors/devel/api-conventions.md#resources

Type: array
Items is a list of ClusterRoleBindings No Additional Items

Each item of this array must be:

Type: object
ClusterRoleBinding references a ClusterRole, but not contain it. It can reference a ClusterRole in the global namespace, and adds who information via Subject.Same definition as oneOf_i473

Type: enum (of string)
Kind is a string value representing the REST resource this object represents. Servers may infer this from the endpoint the client submits requests to. Cannot be updated. In CamelCase. More info: https://git.k8s.io/community/contributors/devel/api-conventions.md#types-kinds

Must be one of:

  • "ClusterRoleBindingList"

Type: object
Standard object's metadata.Same definition as metadata
Type: object
ClusterRoleList is a collection of ClusterRoles

Type: string
APIVersion defines the versioned schema of this representation of an object. Servers should convert recognized schemas to the latest internal value, and may reject unrecognized values. More info: https://git.k8s.io/community/contributors/devel/api-conventions.md#resources

Type: array
Items is a list of ClusterRoles No Additional Items

Each item of this array must be:

Type: object
ClusterRole is a cluster level, logical grouping of PolicyRules that can be referenced as a unit by a RoleBinding or ClusterRoleBinding.Same definition as oneOf_i472

Type: enum (of string)
Kind is a string value representing the REST resource this object represents. Servers may infer this from the endpoint the client submits requests to. Cannot be updated. In CamelCase. More info: https://git.k8s.io/community/contributors/devel/api-conventions.md#types-kinds

Must be one of:

  • "ClusterRoleList"

Type: object
Standard object's metadata.Same definition as metadata
Type: object
PolicyRule holds information that describes a policy rule, but does not contain information about who the rule applies to or which namespace the rule applies to.Same definition as oneOf_i472_rules_items
Type: object
Role is a namespaced, logical grouping of PolicyRules that can be referenced as a unit by a RoleBinding.

Type: string
APIVersion defines the versioned schema of this representation of an object. Servers should convert recognized schemas to the latest internal value, and may reject unrecognized values. More info: https://git.k8s.io/community/contributors/devel/api-conventions.md#resources

Type: enum (of string)
Kind is a string value representing the REST resource this object represents. Servers may infer this from the endpoint the client submits requests to. Cannot be updated. In CamelCase. More info: https://git.k8s.io/community/contributors/devel/api-conventions.md#types-kinds

Must be one of:

  • "Role"

Type: object
Standard object's metadata.Same definition as metadata

Type: array
Rules holds all the PolicyRules for this Role No Additional Items

Each item of this array must be:

Type: object
PolicyRule holds information that describes a policy rule, but does not contain information about who the rule applies to or which namespace the rule applies to.Same definition as oneOf_i472_rules_items
Type: object
RoleBinding references a role, but does not contain it. It can reference a Role in the same namespace or a ClusterRole in the global namespace. It adds who information via Subjects and namespace information by which namespace it exists in. RoleBindings in a given namespace only have effect in that namespace.

Type: string
APIVersion defines the versioned schema of this representation of an object. Servers should convert recognized schemas to the latest internal value, and may reject unrecognized values. More info: https://git.k8s.io/community/contributors/devel/api-conventions.md#resources

Type: enum (of string)
Kind is a string value representing the REST resource this object represents. Servers may infer this from the endpoint the client submits requests to. Cannot be updated. In CamelCase. More info: https://git.k8s.io/community/contributors/devel/api-conventions.md#types-kinds

Must be one of:

  • "RoleBinding"

Type: object
Standard object's metadata.Same definition as metadata

Type: object
RoleRef can reference a Role in the current namespace or a ClusterRole in the global namespace. If the RoleRef cannot be resolved, the Authorizer must return an error.Same definition as roleRef

Type: array
Subjects holds references to the objects the role applies to. No Additional Items

Each item of this array must be:

Type: object
Subject contains a reference to the object or user identities a role binding applies to. This can either hold a direct API object reference, or a value for non-objects such as user and group names.Same definition as oneOf_i473_subjects_items
Type: object
RoleBindingList is a collection of RoleBindings

Type: string
APIVersion defines the versioned schema of this representation of an object. Servers should convert recognized schemas to the latest internal value, and may reject unrecognized values. More info: https://git.k8s.io/community/contributors/devel/api-conventions.md#resources

Type: array
Items is a list of RoleBindings No Additional Items

Each item of this array must be:

Type: object
RoleBinding references a role, but does not contain it. It can reference a Role in the same namespace or a ClusterRole in the global namespace. It adds who information via Subjects and namespace information by which namespace it exists in. RoleBindings in a given namespace only have effect in that namespace.Same definition as oneOf_i478

Type: enum (of string)
Kind is a string value representing the REST resource this object represents. Servers may infer this from the endpoint the client submits requests to. Cannot be updated. In CamelCase. More info: https://git.k8s.io/community/contributors/devel/api-conventions.md#types-kinds

Must be one of:

  • "RoleBindingList"

Type: object
Standard object's metadata.Same definition as metadata
Type: object
RoleList is a collection of Roles

Type: string
APIVersion defines the versioned schema of this representation of an object. Servers should convert recognized schemas to the latest internal value, and may reject unrecognized values. More info: https://git.k8s.io/community/contributors/devel/api-conventions.md#resources

Type: array
Items is a list of Roles No Additional Items

Each item of this array must be:

Type: object
Role is a namespaced, logical grouping of PolicyRules that can be referenced as a unit by a RoleBinding.Same definition as oneOf_i477

Type: enum (of string)
Kind is a string value representing the REST resource this object represents. Servers may infer this from the endpoint the client submits requests to. Cannot be updated. In CamelCase. More info: https://git.k8s.io/community/contributors/devel/api-conventions.md#types-kinds

Must be one of:

  • "RoleList"

Type: object
Standard object's metadata.Same definition as metadata
Type: object
RoleRef contains information that points to the role being usedSame definition as roleRef
Type: object
Subject contains a reference to the object or user identities a role binding applies to. This can either hold a direct API object reference, or a value for non-objects such as user and group names.Same definition as oneOf_i473_subjects_items
Type: object
AggregationRule describes how to locate ClusterRoles to aggregate into the ClusterRole

Type: array
ClusterRoleSelectors holds a list of selectors which will be used to find ClusterRoles and create the rules. If any of the selectors match, then the ClusterRole's permissions will be added No Additional Items

Each item of this array must be:

Type: object
A label selector is a label query over a set of resources. The result of matchLabels and matchExpressions are ANDed. An empty label selector matches all objects. A null label selector matches no objects.Same definition as namespaceSelector
Type: object
ClusterRole is a cluster level, logical grouping of PolicyRules that can be referenced as a unit by a RoleBinding or ClusterRoleBinding.

Type: object
AggregationRule is an optional field that describes how to build the Rules for this ClusterRole. If AggregationRule is set, then the Rules are controller managed and direct changes to Rules will be stomped by the controller.Same definition as oneOf_i483

Type: string
APIVersion defines the versioned schema of this representation of an object. Servers should convert recognized schemas to the latest internal value, and may reject unrecognized values. More info: https://git.k8s.io/community/contributors/devel/api-conventions.md#resources

Type: enum (of string)
Kind is a string value representing the REST resource this object represents. Servers may infer this from the endpoint the client submits requests to. Cannot be updated. In CamelCase. More info: https://git.k8s.io/community/contributors/devel/api-conventions.md#types-kinds

Must be one of:

  • "ClusterRole"

Type: object
Standard object's metadata.Same definition as metadata

Type: array
Rules holds all the PolicyRules for this ClusterRole No Additional Items

Each item of this array must be:

Type: object
PolicyRule holds information that describes a policy rule, but does not contain information about who the rule applies to or which namespace the rule applies to.

Type: array of string
APIGroups is the name of the APIGroup that contains the resources. If multiple API groups are specified, any action requested against one of the enumerated resources in any API group will be allowed. No Additional Items

Each item of this array must be:

Type: array of string
NonResourceURLs is a set of partial urls that a user should have access to. *s are allowed, but only as the full, final step in the path Since non-resource URLs are not namespaced, this field is only applicable for ClusterRoles referenced from a ClusterRoleBinding. Rules can either apply to API resources (such as "pods" or "secrets") or non-resource URL paths (such as "/api"), but not both. No Additional Items

Each item of this array must be:

Type: array of string
ResourceNames is an optional white list of names that the rule applies to. An empty set means that everything is allowed. No Additional Items

Each item of this array must be:

Type: array of string
Resources is a list of resources this rule applies to. '*' represents all resources in the specified apiGroups. '*/foo' represents the subresource 'foo' for all resources in the specified apiGroups. No Additional Items

Each item of this array must be:

Type: array of string
Verbs is a list of Verbs that apply to ALL the ResourceKinds and AttributeRestrictions contained in this rule. VerbAll represents all kinds. No Additional Items

Each item of this array must be:

Type: object
ClusterRoleBinding references a ClusterRole, but not contain it. It can reference a ClusterRole in the global namespace, and adds who information via Subject.

Type: string
APIVersion defines the versioned schema of this representation of an object. Servers should convert recognized schemas to the latest internal value, and may reject unrecognized values. More info: https://git.k8s.io/community/contributors/devel/api-conventions.md#resources

Type: enum (of string)
Kind is a string value representing the REST resource this object represents. Servers may infer this from the endpoint the client submits requests to. Cannot be updated. In CamelCase. More info: https://git.k8s.io/community/contributors/devel/api-conventions.md#types-kinds

Must be one of:

  • "ClusterRoleBinding"

Type: object
Standard object's metadata.Same definition as metadata

Type: object
RoleRef can only reference a ClusterRole in the global namespace. If the RoleRef cannot be resolved, the Authorizer must return an error.

Type: string
APIGroup is the group for the resource being referenced

Type: string
Kind is the type of resource being referenced

Type: string
Name is the name of resource being referenced

Type: array
Subjects holds references to the objects the role applies to. No Additional Items

Each item of this array must be:

Type: object
Subject contains a reference to the object or user identities a role binding applies to. This can either hold a direct API object reference, or a value for non-objects such as user and group names.

Type: string
APIGroup holds the API group of the referenced subject. Defaults to "" for ServiceAccount subjects. Defaults to "rbac.authorization.k8s.io" for User and Group subjects.

Type: string
Kind of object being referenced. Values defined by this API group are "User", "Group", and "ServiceAccount". If the Authorizer does not recognized the kind value, the Authorizer should report an error.

Type: string
Name of the object being referenced.

Type: string
Namespace of the referenced object. If the object kind is non-namespace, such as "User" or "Group", and this value is not empty the Authorizer should report an error.
Type: object
ClusterRoleBindingList is a collection of ClusterRoleBindings

Type: string
APIVersion defines the versioned schema of this representation of an object. Servers should convert recognized schemas to the latest internal value, and may reject unrecognized values. More info: https://git.k8s.io/community/contributors/devel/api-conventions.md#resources

Type: array
Items is a list of ClusterRoleBindings No Additional Items

Each item of this array must be:

Type: object
ClusterRoleBinding references a ClusterRole, but not contain it. It can reference a ClusterRole in the global namespace, and adds who information via Subject.Same definition as oneOf_i485

Type: enum (of string)
Kind is a string value representing the REST resource this object represents. Servers may infer this from the endpoint the client submits requests to. Cannot be updated. In CamelCase. More info: https://git.k8s.io/community/contributors/devel/api-conventions.md#types-kinds

Must be one of:

  • "ClusterRoleBindingList"

Type: object
Standard object's metadata.Same definition as metadata
Type: object
ClusterRoleList is a collection of ClusterRoles

Type: string
APIVersion defines the versioned schema of this representation of an object. Servers should convert recognized schemas to the latest internal value, and may reject unrecognized values. More info: https://git.k8s.io/community/contributors/devel/api-conventions.md#resources

Type: array
Items is a list of ClusterRoles No Additional Items

Each item of this array must be:

Type: object
ClusterRole is a cluster level, logical grouping of PolicyRules that can be referenced as a unit by a RoleBinding or ClusterRoleBinding.Same definition as oneOf_i484

Type: enum (of string)
Kind is a string value representing the REST resource this object represents. Servers may infer this from the endpoint the client submits requests to. Cannot be updated. In CamelCase. More info: https://git.k8s.io/community/contributors/devel/api-conventions.md#types-kinds

Must be one of:

  • "ClusterRoleList"

Type: object
Standard object's metadata.Same definition as metadata
Type: object
PolicyRule holds information that describes a policy rule, but does not contain information about who the rule applies to or which namespace the rule applies to.Same definition as oneOf_i484_rules_items
Type: object
Role is a namespaced, logical grouping of PolicyRules that can be referenced as a unit by a RoleBinding.

Type: string
APIVersion defines the versioned schema of this representation of an object. Servers should convert recognized schemas to the latest internal value, and may reject unrecognized values. More info: https://git.k8s.io/community/contributors/devel/api-conventions.md#resources

Type: enum (of string)
Kind is a string value representing the REST resource this object represents. Servers may infer this from the endpoint the client submits requests to. Cannot be updated. In CamelCase. More info: https://git.k8s.io/community/contributors/devel/api-conventions.md#types-kinds

Must be one of:

  • "Role"

Type: object
Standard object's metadata.Same definition as metadata

Type: array
Rules holds all the PolicyRules for this Role No Additional Items

Each item of this array must be:

Type: object
PolicyRule holds information that describes a policy rule, but does not contain information about who the rule applies to or which namespace the rule applies to.Same definition as oneOf_i484_rules_items
Type: object
RoleBinding references a role, but does not contain it. It can reference a Role in the same namespace or a ClusterRole in the global namespace. It adds who information via Subjects and namespace information by which namespace it exists in. RoleBindings in a given namespace only have effect in that namespace.

Type: string
APIVersion defines the versioned schema of this representation of an object. Servers should convert recognized schemas to the latest internal value, and may reject unrecognized values. More info: https://git.k8s.io/community/contributors/devel/api-conventions.md#resources

Type: enum (of string)
Kind is a string value representing the REST resource this object represents. Servers may infer this from the endpoint the client submits requests to. Cannot be updated. In CamelCase. More info: https://git.k8s.io/community/contributors/devel/api-conventions.md#types-kinds

Must be one of:

  • "RoleBinding"

Type: object
Standard object's metadata.Same definition as metadata

Type: object
RoleRef can reference a Role in the current namespace or a ClusterRole in the global namespace. If the RoleRef cannot be resolved, the Authorizer must return an error.Same definition as roleRef

Type: array
Subjects holds references to the objects the role applies to. No Additional Items

Each item of this array must be:

Type: object
Subject contains a reference to the object or user identities a role binding applies to. This can either hold a direct API object reference, or a value for non-objects such as user and group names.Same definition as oneOf_i485_subjects_items
Type: object
RoleBindingList is a collection of RoleBindings

Type: string
APIVersion defines the versioned schema of this representation of an object. Servers should convert recognized schemas to the latest internal value, and may reject unrecognized values. More info: https://git.k8s.io/community/contributors/devel/api-conventions.md#resources

Type: array
Items is a list of RoleBindings No Additional Items

Each item of this array must be:

Type: object
RoleBinding references a role, but does not contain it. It can reference a Role in the same namespace or a ClusterRole in the global namespace. It adds who information via Subjects and namespace information by which namespace it exists in. RoleBindings in a given namespace only have effect in that namespace.Same definition as oneOf_i490

Type: enum (of string)
Kind is a string value representing the REST resource this object represents. Servers may infer this from the endpoint the client submits requests to. Cannot be updated. In CamelCase. More info: https://git.k8s.io/community/contributors/devel/api-conventions.md#types-kinds

Must be one of:

  • "RoleBindingList"

Type: object
Standard object's metadata.Same definition as metadata
Type: object
RoleList is a collection of Roles

Type: string
APIVersion defines the versioned schema of this representation of an object. Servers should convert recognized schemas to the latest internal value, and may reject unrecognized values. More info: https://git.k8s.io/community/contributors/devel/api-conventions.md#resources

Type: array
Items is a list of Roles No Additional Items

Each item of this array must be:

Type: object
Role is a namespaced, logical grouping of PolicyRules that can be referenced as a unit by a RoleBinding.Same definition as oneOf_i489

Type: enum (of string)
Kind is a string value representing the REST resource this object represents. Servers may infer this from the endpoint the client submits requests to. Cannot be updated. In CamelCase. More info: https://git.k8s.io/community/contributors/devel/api-conventions.md#types-kinds

Must be one of:

  • "RoleList"

Type: object
Standard object's metadata.Same definition as metadata
Type: object
RoleRef contains information that points to the role being usedSame definition as roleRef
Type: object
Subject contains a reference to the object or user identities a role binding applies to. This can either hold a direct API object reference, or a value for non-objects such as user and group names.Same definition as oneOf_i485_subjects_items
Type: object
PriorityClass defines mapping from a priority class name to the priority integer value. The value can be any valid integer.

Type: string
APIVersion defines the versioned schema of this representation of an object. Servers should convert recognized schemas to the latest internal value, and may reject unrecognized values. More info: https://git.k8s.io/community/contributors/devel/api-conventions.md#resources

Type: string
description is an arbitrary string that usually provides guidelines on when this priority class should be used.

Type: boolean
globalDefault specifies whether this PriorityClass should be considered as the default priority for pods that do not have any priority class. Only one PriorityClass can be marked as `globalDefault`. However, if more than one PriorityClasses exists with their `globalDefault` field set to true, the smallest value of such global default PriorityClasses will be used as the default priority.

Type: enum (of string)
Kind is a string value representing the REST resource this object represents. Servers may infer this from the endpoint the client submits requests to. Cannot be updated. In CamelCase. More info: https://git.k8s.io/community/contributors/devel/api-conventions.md#types-kinds

Must be one of:

  • "PriorityClass"

Type: object
Standard object's metadata. More info: https://git.k8s.io/community/contributors/devel/api-conventions.md#metadataSame definition as metadata

Type: integerFormat: int32
The value of this priority class. This is the actual priority that pods receive when they have the name of this class in their pod spec.
Type: object
PriorityClassList is a collection of priority classes.

Type: string
APIVersion defines the versioned schema of this representation of an object. Servers should convert recognized schemas to the latest internal value, and may reject unrecognized values. More info: https://git.k8s.io/community/contributors/devel/api-conventions.md#resources

Type: array
items is the list of PriorityClasses No Additional Items

Each item of this array must be:

Type: object
PriorityClass defines mapping from a priority class name to the priority integer value. The value can be any valid integer.Same definition as oneOf_i495

Type: enum (of string)
Kind is a string value representing the REST resource this object represents. Servers may infer this from the endpoint the client submits requests to. Cannot be updated. In CamelCase. More info: https://git.k8s.io/community/contributors/devel/api-conventions.md#types-kinds

Must be one of:

  • "PriorityClassList"

Type: object
Standard list metadata More info: https://git.k8s.io/community/contributors/devel/api-conventions.md#metadataSame definition as metadata
Type: object
PriorityClass defines mapping from a priority class name to the priority integer value. The value can be any valid integer.

Type: string
APIVersion defines the versioned schema of this representation of an object. Servers should convert recognized schemas to the latest internal value, and may reject unrecognized values. More info: https://git.k8s.io/community/contributors/devel/api-conventions.md#resources

Type: string
description is an arbitrary string that usually provides guidelines on when this priority class should be used.

Type: boolean
globalDefault specifies whether this PriorityClass should be considered as the default priority for pods that do not have any priority class. Only one PriorityClass can be marked as `globalDefault`. However, if more than one PriorityClasses exists with their `globalDefault` field set to true, the smallest value of such global default PriorityClasses will be used as the default priority.

Type: enum (of string)
Kind is a string value representing the REST resource this object represents. Servers may infer this from the endpoint the client submits requests to. Cannot be updated. In CamelCase. More info: https://git.k8s.io/community/contributors/devel/api-conventions.md#types-kinds

Must be one of:

  • "PriorityClass"

Type: object
Standard object's metadata. More info: https://git.k8s.io/community/contributors/devel/api-conventions.md#metadataSame definition as metadata

Type: integerFormat: int32
The value of this priority class. This is the actual priority that pods receive when they have the name of this class in their pod spec.
Type: object
PriorityClassList is a collection of priority classes.

Type: string
APIVersion defines the versioned schema of this representation of an object. Servers should convert recognized schemas to the latest internal value, and may reject unrecognized values. More info: https://git.k8s.io/community/contributors/devel/api-conventions.md#resources

Type: array
items is the list of PriorityClasses No Additional Items

Each item of this array must be:

Type: object
PriorityClass defines mapping from a priority class name to the priority integer value. The value can be any valid integer.Same definition as oneOf_i497

Type: enum (of string)
Kind is a string value representing the REST resource this object represents. Servers may infer this from the endpoint the client submits requests to. Cannot be updated. In CamelCase. More info: https://git.k8s.io/community/contributors/devel/api-conventions.md#types-kinds

Must be one of:

  • "PriorityClassList"

Type: object
Standard list metadata More info: https://git.k8s.io/community/contributors/devel/api-conventions.md#metadataSame definition as metadata
Type: object
PodPreset is a policy resource that defines additional runtime requirements for a Pod.

Type: string
APIVersion defines the versioned schema of this representation of an object. Servers should convert recognized schemas to the latest internal value, and may reject unrecognized values. More info: https://git.k8s.io/community/contributors/devel/api-conventions.md#resources

Type: enum (of string)
Kind is a string value representing the REST resource this object represents. Servers may infer this from the endpoint the client submits requests to. Cannot be updated. In CamelCase. More info: https://git.k8s.io/community/contributors/devel/api-conventions.md#types-kinds

Must be one of:

  • "PodPreset"

Type: object
ObjectMeta is metadata that all persisted resources must have, which includes all objects users must create.Same definition as metadata

Type: object
PodPresetSpec is a description of a pod preset.

Type: array
Env defines the collection of EnvVar to inject into containers. No Additional Items

Each item of this array must be:

Type: object
EnvVar represents an environment variable present in a Container.Same definition as oneOf_i14_spec_template_spec_containers_items_env_items

Type: array
EnvFrom defines the collection of EnvFromSource to inject into containers. No Additional Items

Each item of this array must be:

Type: object
Selector is a label query over a set of resources, in this case pods. Required.Same definition as namespaceSelector

Type: array
VolumeMounts defines the collection of VolumeMount to inject into containers. No Additional Items

Each item of this array must be:

Type: array
Volumes defines the collection of Volume to inject into the pod. No Additional Items

Each item of this array must be:

Type: object
Volume represents a named volume in a pod that may be accessed by any container in the pod.Same definition as oneOf_i14_spec_template_spec_volumes_items
Type: object
PodPresetList is a list of PodPreset objects.

Type: string
APIVersion defines the versioned schema of this representation of an object. Servers should convert recognized schemas to the latest internal value, and may reject unrecognized values. More info: https://git.k8s.io/community/contributors/devel/api-conventions.md#resources

Type: array
Items is a list of schema objects. No Additional Items

Each item of this array must be:

Type: object
PodPreset is a policy resource that defines additional runtime requirements for a Pod.Same definition as oneOf_i499

Type: enum (of string)
Kind is a string value representing the REST resource this object represents. Servers may infer this from the endpoint the client submits requests to. Cannot be updated. In CamelCase. More info: https://git.k8s.io/community/contributors/devel/api-conventions.md#types-kinds

Must be one of:

  • "PodPresetList"

Type: object
Standard list metadata. More info: https://git.k8s.io/community/contributors/devel/api-conventions.md#metadataSame definition as metadata
Type: object
PodPresetSpec is a description of a pod preset.Same definition as spec
Type: object
StorageClass describes the parameters for a class of storage for which PersistentVolumes can be dynamically provisioned. StorageClasses are non-namespaced; the name of the storage class according to etcd is in ObjectMeta.Name.

Type: boolean
AllowVolumeExpansion shows whether the storage class allow volume expand

Type: array
Restrict the node topologies where volumes can be dynamically provisioned. Each volume plugin defines its own supported topology specifications. An empty TopologySelectorTerm list means there is no topology restriction. This field is only honored by servers that enable the VolumeScheduling feature. No Additional Items

Each item of this array must be:

Type: object
A topology selector term represents the result of label queries. A null or empty topology selector term matches no objects. The requirements of them are ANDed. It provides a subset of functionality as NodeSelectorTerm. This is an alpha feature and may change in the future.Same definition as oneOf_i369

Type: string
APIVersion defines the versioned schema of this representation of an object. Servers should convert recognized schemas to the latest internal value, and may reject unrecognized values. More info: https://git.k8s.io/community/contributors/devel/api-conventions.md#resources

Type: enum (of string)
Kind is a string value representing the REST resource this object represents. Servers may infer this from the endpoint the client submits requests to. Cannot be updated. In CamelCase. More info: https://git.k8s.io/community/contributors/devel/api-conventions.md#types-kinds

Must be one of:

  • "StorageClass"

Type: object
Standard object's metadata. More info: https://git.k8s.io/community/contributors/devel/api-conventions.md#metadataSame definition as metadata

Type: array of string
Dynamically provisioned PersistentVolumes of this storage class are created with these mountOptions, e.g. ["ro", "soft"]. Not validated - mount of the PVs will simply fail if one is invalid. No Additional Items

Each item of this array must be:

Type: object
Parameters holds the parameters for the provisioner that should create volumes of this storage class.

Each additional property must conform to the following schema

Type: string

Type: string
Provisioner indicates the type of the provisioner.

Type: string
Dynamically provisioned PersistentVolumes of this storage class are created with this reclaimPolicy. Defaults to Delete.

Type: string
VolumeBindingMode indicates how PersistentVolumeClaims should be provisioned and bound. When unset, VolumeBindingImmediate is used. This field is only honored by servers that enable the VolumeScheduling feature.
Type: object
StorageClassList is a collection of storage classes.

Type: string
APIVersion defines the versioned schema of this representation of an object. Servers should convert recognized schemas to the latest internal value, and may reject unrecognized values. More info: https://git.k8s.io/community/contributors/devel/api-conventions.md#resources

Type: array
Items is the list of StorageClasses No Additional Items

Each item of this array must be:

Type: object
StorageClass describes the parameters for a class of storage for which PersistentVolumes can be dynamically provisioned. StorageClasses are non-namespaced; the name of the storage class according to etcd is in ObjectMeta.Name.Same definition as oneOf_i502

Type: enum (of string)
Kind is a string value representing the REST resource this object represents. Servers may infer this from the endpoint the client submits requests to. Cannot be updated. In CamelCase. More info: https://git.k8s.io/community/contributors/devel/api-conventions.md#types-kinds

Must be one of:

  • "StorageClassList"

Type: object
Standard list metadata More info: https://git.k8s.io/community/contributors/devel/api-conventions.md#metadataSame definition as metadata
Type: object
VolumeAttachment captures the intent to attach or detach the specified volume to/from the specified node. VolumeAttachment objects are non-namespaced.

Type: string
APIVersion defines the versioned schema of this representation of an object. Servers should convert recognized schemas to the latest internal value, and may reject unrecognized values. More info: https://git.k8s.io/community/contributors/devel/api-conventions.md#resources

Type: enum (of string)
Kind is a string value representing the REST resource this object represents. Servers may infer this from the endpoint the client submits requests to. Cannot be updated. In CamelCase. More info: https://git.k8s.io/community/contributors/devel/api-conventions.md#types-kinds

Must be one of:

  • "VolumeAttachment"

Type: object
Standard object metadata. More info: https://git.k8s.io/community/contributors/devel/api-conventions.md#metadataSame definition as metadata

Type: object
Specification of the desired attach/detach volume behavior. Populated by the Kubernetes system.

Type: string
Attacher indicates the name of the volume driver that MUST handle this request. This is the name returned by GetPluginName().

Type: string
The node that the volume should be attached to.

Type: object
Source represents the volume that should be attached.

Type: string
Name of the persistent volume to attach.

Type: object
Status of the VolumeAttachment request. Populated by the entity completing the attach or detach operation, i.e. the external-attacher.

Type: object
The last error encountered during attach operation, if any. This field must only be set by the entity completing the attach operation, i.e. the external-attacher.

Type: string
String detailing the error encountered during Attach or Detach operation. This string maybe logged, so it should not contain sensitive information.

Type: string
Time the error was encountered.Same definition as creationTimestamp

Type: boolean
Indicates the volume is successfully attached. This field must only be set by the entity completing the attach operation, i.e. the external-attacher.

Type: object
Upon successful attach, this field is populated with any information returned by the attach operation that must be passed into subsequent WaitForAttach or Mount calls. This field must only be set by the entity completing the attach operation, i.e. the external-attacher.

Each additional property must conform to the following schema

Type: string

Type: object
The last error encountered during detach operation, if any. This field must only be set by the entity completing the detach operation, i.e. the external-attacher.Same definition as attachError
Type: object
VolumeAttachmentList is a collection of VolumeAttachment objects.

Type: string
APIVersion defines the versioned schema of this representation of an object. Servers should convert recognized schemas to the latest internal value, and may reject unrecognized values. More info: https://git.k8s.io/community/contributors/devel/api-conventions.md#resources

Type: array
Items is the list of VolumeAttachments No Additional Items

Each item of this array must be:

Type: object
VolumeAttachment captures the intent to attach or detach the specified volume to/from the specified node. VolumeAttachment objects are non-namespaced.Same definition as oneOf_i504

Type: enum (of string)
Kind is a string value representing the REST resource this object represents. Servers may infer this from the endpoint the client submits requests to. Cannot be updated. In CamelCase. More info: https://git.k8s.io/community/contributors/devel/api-conventions.md#types-kinds

Must be one of:

  • "VolumeAttachmentList"

Type: object
Standard list metadata More info: https://git.k8s.io/community/contributors/devel/api-conventions.md#metadataSame definition as metadata
Type: object
VolumeAttachmentSource represents a volume that should be attached. Right now only PersistenVolumes can be attached via external attacher, in future we may allow also inline volumes in pods. Exactly one member can be set.Same definition as source
Type: object
VolumeAttachmentSpec is the specification of a VolumeAttachment request.Same definition as spec
Type: object
VolumeAttachmentStatus is the status of a VolumeAttachment request.Same definition as status
Type: object
VolumeError captures an error encountered during a volume operation.Same definition as attachError
Type: object
VolumeAttachment captures the intent to attach or detach the specified volume to/from the specified node. VolumeAttachment objects are non-namespaced.

Type: string
APIVersion defines the versioned schema of this representation of an object. Servers should convert recognized schemas to the latest internal value, and may reject unrecognized values. More info: https://git.k8s.io/community/contributors/devel/api-conventions.md#resources

Type: enum (of string)
Kind is a string value representing the REST resource this object represents. Servers may infer this from the endpoint the client submits requests to. Cannot be updated. In CamelCase. More info: https://git.k8s.io/community/contributors/devel/api-conventions.md#types-kinds

Must be one of:

  • "VolumeAttachment"

Type: object
Standard object metadata. More info: https://git.k8s.io/community/contributors/devel/api-conventions.md#metadataSame definition as metadata

Type: object
Specification of the desired attach/detach volume behavior. Populated by the Kubernetes system.

Type: string
Attacher indicates the name of the volume driver that MUST handle this request. This is the name returned by GetPluginName().

Type: string
The node that the volume should be attached to.

Type: object
Source represents the volume that should be attached.

Type: string
Name of the persistent volume to attach.

Type: object
Status of the VolumeAttachment request. Populated by the entity completing the attach or detach operation, i.e. the external-attacher.

Type: object
The last error encountered during attach operation, if any. This field must only be set by the entity completing the attach operation, i.e. the external-attacher.

Type: string
String detailing the error encountered during Attach or Detach operation. This string maybe logged, so it should not contain sensitive information.

Type: string
Time the error was encountered.Same definition as creationTimestamp

Type: boolean
Indicates the volume is successfully attached. This field must only be set by the entity completing the attach operation, i.e. the external-attacher.

Type: object
Upon successful attach, this field is populated with any information returned by the attach operation that must be passed into subsequent WaitForAttach or Mount calls. This field must only be set by the entity completing the attach operation, i.e. the external-attacher.

Each additional property must conform to the following schema

Type: string

Type: object
The last error encountered during detach operation, if any. This field must only be set by the entity completing the detach operation, i.e. the external-attacher.Same definition as attachError
Type: object
VolumeAttachmentList is a collection of VolumeAttachment objects.

Type: string
APIVersion defines the versioned schema of this representation of an object. Servers should convert recognized schemas to the latest internal value, and may reject unrecognized values. More info: https://git.k8s.io/community/contributors/devel/api-conventions.md#resources

Type: array
Items is the list of VolumeAttachments No Additional Items

Each item of this array must be:

Type: object
VolumeAttachment captures the intent to attach or detach the specified volume to/from the specified node. VolumeAttachment objects are non-namespaced.Same definition as oneOf_i510

Type: enum (of string)
Kind is a string value representing the REST resource this object represents. Servers may infer this from the endpoint the client submits requests to. Cannot be updated. In CamelCase. More info: https://git.k8s.io/community/contributors/devel/api-conventions.md#types-kinds

Must be one of:

  • "VolumeAttachmentList"

Type: object
Standard list metadata More info: https://git.k8s.io/community/contributors/devel/api-conventions.md#metadataSame definition as metadata
Type: object
VolumeAttachmentSource represents a volume that should be attached. Right now only PersistenVolumes can be attached via external attacher, in future we may allow also inline volumes in pods. Exactly one member can be set.Same definition as source
Type: object
VolumeAttachmentSpec is the specification of a VolumeAttachment request.Same definition as spec
Type: object
VolumeAttachmentStatus is the status of a VolumeAttachment request.Same definition as status
Type: object
VolumeError captures an error encountered during a volume operation.Same definition as attachError
Type: object
StorageClass describes the parameters for a class of storage for which PersistentVolumes can be dynamically provisioned. StorageClasses are non-namespaced; the name of the storage class according to etcd is in ObjectMeta.Name.

Type: boolean
AllowVolumeExpansion shows whether the storage class allow volume expand

Type: array
Restrict the node topologies where volumes can be dynamically provisioned. Each volume plugin defines its own supported topology specifications. An empty TopologySelectorTerm list means there is no topology restriction. This field is only honored by servers that enable the VolumeScheduling feature. No Additional Items

Each item of this array must be:

Type: object
A topology selector term represents the result of label queries. A null or empty topology selector term matches no objects. The requirements of them are ANDed. It provides a subset of functionality as NodeSelectorTerm. This is an alpha feature and may change in the future.Same definition as oneOf_i369

Type: string
APIVersion defines the versioned schema of this representation of an object. Servers should convert recognized schemas to the latest internal value, and may reject unrecognized values. More info: https://git.k8s.io/community/contributors/devel/api-conventions.md#resources

Type: enum (of string)
Kind is a string value representing the REST resource this object represents. Servers may infer this from the endpoint the client submits requests to. Cannot be updated. In CamelCase. More info: https://git.k8s.io/community/contributors/devel/api-conventions.md#types-kinds

Must be one of:

  • "StorageClass"

Type: object
Standard object's metadata. More info: https://git.k8s.io/community/contributors/devel/api-conventions.md#metadataSame definition as metadata

Type: array of string
Dynamically provisioned PersistentVolumes of this storage class are created with these mountOptions, e.g. ["ro", "soft"]. Not validated - mount of the PVs will simply fail if one is invalid. No Additional Items

Each item of this array must be:

Type: object
Parameters holds the parameters for the provisioner that should create volumes of this storage class.

Each additional property must conform to the following schema

Type: string

Type: string
Provisioner indicates the type of the provisioner.

Type: string
Dynamically provisioned PersistentVolumes of this storage class are created with this reclaimPolicy. Defaults to Delete.

Type: string
VolumeBindingMode indicates how PersistentVolumeClaims should be provisioned and bound. When unset, VolumeBindingImmediate is used. This field is only honored by servers that enable the VolumeScheduling feature.
Type: object
StorageClassList is a collection of storage classes.

Type: string
APIVersion defines the versioned schema of this representation of an object. Servers should convert recognized schemas to the latest internal value, and may reject unrecognized values. More info: https://git.k8s.io/community/contributors/devel/api-conventions.md#resources

Type: array
Items is the list of StorageClasses No Additional Items

Each item of this array must be:

Type: object
StorageClass describes the parameters for a class of storage for which PersistentVolumes can be dynamically provisioned. StorageClasses are non-namespaced; the name of the storage class according to etcd is in ObjectMeta.Name.Same definition as oneOf_i516

Type: enum (of string)
Kind is a string value representing the REST resource this object represents. Servers may infer this from the endpoint the client submits requests to. Cannot be updated. In CamelCase. More info: https://git.k8s.io/community/contributors/devel/api-conventions.md#types-kinds

Must be one of:

  • "StorageClassList"

Type: object
Standard list metadata More info: https://git.k8s.io/community/contributors/devel/api-conventions.md#metadataSame definition as metadata
Type: object
VolumeAttachment captures the intent to attach or detach the specified volume to/from the specified node. VolumeAttachment objects are non-namespaced.

Type: string
APIVersion defines the versioned schema of this representation of an object. Servers should convert recognized schemas to the latest internal value, and may reject unrecognized values. More info: https://git.k8s.io/community/contributors/devel/api-conventions.md#resources

Type: enum (of string)
Kind is a string value representing the REST resource this object represents. Servers may infer this from the endpoint the client submits requests to. Cannot be updated. In CamelCase. More info: https://git.k8s.io/community/contributors/devel/api-conventions.md#types-kinds

Must be one of:

  • "VolumeAttachment"

Type: object
Standard object metadata. More info: https://git.k8s.io/community/contributors/devel/api-conventions.md#metadataSame definition as metadata

Type: object
Specification of the desired attach/detach volume behavior. Populated by the Kubernetes system.

Type: string
Attacher indicates the name of the volume driver that MUST handle this request. This is the name returned by GetPluginName().

Type: string
The node that the volume should be attached to.

Type: object
Source represents the volume that should be attached.

Type: string
Name of the persistent volume to attach.

Type: object
Status of the VolumeAttachment request. Populated by the entity completing the attach or detach operation, i.e. the external-attacher.

Type: object
The last error encountered during attach operation, if any. This field must only be set by the entity completing the attach operation, i.e. the external-attacher.

Type: string
String detailing the error encountered during Attach or Detach operation. This string maybe logged, so it should not contain sensitive information.

Type: string
Time the error was encountered.Same definition as creationTimestamp

Type: boolean
Indicates the volume is successfully attached. This field must only be set by the entity completing the attach operation, i.e. the external-attacher.

Type: object
Upon successful attach, this field is populated with any information returned by the attach operation that must be passed into subsequent WaitForAttach or Mount calls. This field must only be set by the entity completing the attach operation, i.e. the external-attacher.

Each additional property must conform to the following schema

Type: string

Type: object
The last error encountered during detach operation, if any. This field must only be set by the entity completing the detach operation, i.e. the external-attacher.Same definition as attachError
Type: object
VolumeAttachmentList is a collection of VolumeAttachment objects.

Type: string
APIVersion defines the versioned schema of this representation of an object. Servers should convert recognized schemas to the latest internal value, and may reject unrecognized values. More info: https://git.k8s.io/community/contributors/devel/api-conventions.md#resources

Type: array
Items is the list of VolumeAttachments No Additional Items

Each item of this array must be:

Type: object
VolumeAttachment captures the intent to attach or detach the specified volume to/from the specified node. VolumeAttachment objects are non-namespaced.Same definition as oneOf_i518

Type: enum (of string)
Kind is a string value representing the REST resource this object represents. Servers may infer this from the endpoint the client submits requests to. Cannot be updated. In CamelCase. More info: https://git.k8s.io/community/contributors/devel/api-conventions.md#types-kinds

Must be one of:

  • "VolumeAttachmentList"

Type: object
Standard list metadata More info: https://git.k8s.io/community/contributors/devel/api-conventions.md#metadataSame definition as metadata
Type: object
VolumeAttachmentSource represents a volume that should be attached. Right now only PersistenVolumes can be attached via external attacher, in future we may allow also inline volumes in pods. Exactly one member can be set.Same definition as source
Type: object
VolumeAttachmentSpec is the specification of a VolumeAttachment request.Same definition as spec
Type: object
VolumeAttachmentStatus is the status of a VolumeAttachment request.Same definition as status
Type: object
VolumeError captures an error encountered during a volume operation.Same definition as attachError
Type: object
CustomResourceColumnDefinition specifies a column for server side printing.

Type: string
JSONPath is a simple JSON path, i.e. with array notation.

Type: string
description is a human readable description of this column.

Type: string
format is an optional OpenAPI type definition for this column. The 'name' format is applied to the primary identifier column to assist in clients identifying column is the resource name. See https://github.com/OAI/OpenAPI-Specification/blob/master/versions/2.0.md#data-types for more.

Type: string
name is a human readable name for the column.

Type: integerFormat: int32
priority is an integer defining the relative importance of this column compared to others. Lower numbers are considered higher priority. Columns that may be omitted in limited space scenarios should be given a higher priority.

Type: string
type is an OpenAPI type definition for this column. See https://github.com/OAI/OpenAPI-Specification/blob/master/versions/2.0.md#data-types for more.
Type: object
CustomResourceConversion describes how to convert different versions of a CR.

Type: string
`strategy` specifies the conversion strategy. Allowed values are: - `None`: The converter only change the apiVersion and would not touch any other field in the CR. - `Webhook`: API Server will call to an external webhook to do the conversion. Additional information is needed for this option.

Type: object
`webhookClientConfig` is the instructions for how to call the webhook if strategy is `Webhook`. This field is alpha-level and is only honored by servers that enable the CustomResourceWebhookConversion feature.

Type: stringFormat: byte
`caBundle` is a PEM encoded CA bundle which will be used to validate the webhook's server certificate. If unspecified, system trust roots on the apiserver are used.

Type: object
`service` is a reference to the service for this webhook. Either `service` or `url` must be specified. If the webhook is running within the cluster, then you should use `service`. Port 443 will be used if it is open, otherwise it is an error.

Type: string
`name` is the name of the service. Required

Type: string
`namespace` is the namespace of the service. Required

Type: string
`path` is an optional URL path which will be sent in any request to this service.

Type: string
`url` gives the location of the webhook, in standard URL form (`scheme://host:port/path`). Exactly one of `url` or `service` must be specified. The `host` should not refer to a service running in the cluster; use the `service` field instead. The host might be resolved via external DNS in some apiservers (e.g., `kube-apiserver` cannot resolve in-cluster DNS as that would be a layering violation). `host` may also be an IP address. Please note that using `localhost` or `127.0.0.1` as a `host` is risky unless you take great care to run this webhook on all hosts which run an apiserver which might need to make calls to this webhook. Such installs are likely to be non-portable, i.e., not easy to turn up in a new cluster. The scheme must be "https"; the URL must begin with "https://". A path is optional, and if present may be any string permissible in a URL. You may use the path to pass an arbitrary string to the webhook, for example, a cluster identifier. Attempting to use a user or basic auth e.g. "user:password@" is not allowed. Fragments ("#...") and query parameters ("?...") are not allowed, either.
Type: object
CustomResourceDefinition represents a resource that should be exposed on the API server. Its name MUST be in the format <.spec.name>.<.spec.group>.

Type: string
APIVersion defines the versioned schema of this representation of an object. Servers should convert recognized schemas to the latest internal value, and may reject unrecognized values. More info: https://git.k8s.io/community/contributors/devel/api-conventions.md#resources

Type: enum (of string)
Kind is a string value representing the REST resource this object represents. Servers may infer this from the endpoint the client submits requests to. Cannot be updated. In CamelCase. More info: https://git.k8s.io/community/contributors/devel/api-conventions.md#types-kinds

Must be one of:

  • "CustomResourceDefinition"

Type: object
ObjectMeta is metadata that all persisted resources must have, which includes all objects users must create.Same definition as metadata

Type: object
Spec describes how the user wants the resources to appear

Type: array
AdditionalPrinterColumns are additional columns shown e.g. in kubectl next to the name. Defaults to a created-at column. Optional, the global columns for all versions. Top-level and per-version columns are mutually exclusive. No Additional Items

Each item of this array must be:

Type: object
`conversion` defines conversion settings for the CRD.Same definition as oneOf_i525

Type: string
Group is the group this resource belongs in

Type: object
Names are the names used to describe this custom resource

Type: array of string
Categories is a list of grouped resources custom resources belong to (e.g. 'all') No Additional Items

Each item of this array must be:

Type: string
Kind is the serialized kind of the resource. It is normally CamelCase and singular.

Type: string
ListKind is the serialized kind of the list for this resource. Defaults to List.

Type: string
Plural is the plural name of the resource to serve. It must match the name of the CustomResourceDefinition-registration too: plural.group and it must be all lowercase.

Type: array of string
ShortNames are short names for the resource. It must be all lowercase. No Additional Items

Each item of this array must be:

Type: string
Singular is the singular name of the resource. It must be all lowercase Defaults to lowercased

Type: string
Scope indicates whether this resource is cluster or namespace scoped. Default is namespaced

Type: object
Subresources describes the subresources for CustomResource Optional, the global subresources for all versions. Top-level and per-version subresources are mutually exclusive.

Type: object
Scale denotes the scale subresource for CustomResources

Type: string
LabelSelectorPath defines the JSON path inside of a CustomResource that corresponds to Scale.Status.Selector. Only JSON paths without the array notation are allowed. Must be a JSON Path under .status. Must be set to work with HPA. If there is no value under the given path in the CustomResource, the status label selector value in the /scale subresource will default to the empty string.

Type: string
SpecReplicasPath defines the JSON path inside of a CustomResource that corresponds to Scale.Spec.Replicas. Only JSON paths without the array notation are allowed. Must be a JSON Path under .spec. If there is no value under the given path in the CustomResource, the /scale subresource will return an error on GET.

Type: string
StatusReplicasPath defines the JSON path inside of a CustomResource that corresponds to Scale.Status.Replicas. Only JSON paths without the array notation are allowed. Must be a JSON Path under .status. If there is no value under the given path in the CustomResource, the status replica value in the /scale subresource will default to 0.

Type: object
Status denotes the status subresource for CustomResources

Type: object
Validation describes the validation methods for CustomResources Optional, the global validation schema for all versions. Top-level and per-version schemas are mutually exclusive.

Type: object
OpenAPIV3Schema is the OpenAPI v3 schema to be validated against.

Type: object
JSONSchemaPropsOrBool represents JSONSchemaProps or a boolean value. Defaults to true for the boolean property.

Type: object
JSONSchemaPropsOrBool represents JSONSchemaProps or a boolean value. Defaults to true for the boolean property.Same definition as additionalItems

Type: array
No Additional Items

Each item of this array must be:

Type: object
JSONSchemaProps is a JSON-Schema following Specification Draft 4 (http://json-schema.org/).Same definition as openAPIV3Schema

Type: array
No Additional Items

Each item of this array must be:

Type: object
JSONSchemaProps is a JSON-Schema following Specification Draft 4 (http://json-schema.org/).Same definition as openAPIV3Schema

Type: object
JSON represents any valid JSON value. These types are supported: bool, int64, float64, string, []interface{}, map[string]interface{} and nil.

Type: object

Each additional property must conform to the following schema

Type: object
JSONSchemaProps is a JSON-Schema following Specification Draft 4 (http://json-schema.org/).Same definition as openAPIV3Schema

Type: object

Each additional property must conform to the following schema

Type: object
JSONSchemaPropsOrStringArray represents a JSONSchemaProps or a string array.

Type: array
No Additional Items

Each item of this array must be:

Type: object
JSON represents any valid JSON value. These types are supported: bool, int64, float64, string, []interface{}, map[string]interface{} and nil.Same definition as default

Type: object
JSON represents any valid JSON value. These types are supported: bool, int64, float64, string, []interface{}, map[string]interface{} and nil.Same definition as default

Type: object
ExternalDocumentation allows referencing an external resource for extended documentation.

Type: object
JSONSchemaPropsOrArray represents a value that can either be a JSONSchemaProps or an array of JSONSchemaProps. Mainly here for serialization purposes.

Type: integerFormat: int64

Type: integerFormat: int64

Type: integerFormat: int64

Type: numberFormat: double

Type: integerFormat: int64

Type: integerFormat: int64

Type: integerFormat: int64

Type: numberFormat: double

Type: numberFormat: double

Type: object
JSONSchemaProps is a JSON-Schema following Specification Draft 4 (http://json-schema.org/).Same definition as openAPIV3Schema

Type: array
No Additional Items

Each item of this array must be:

Type: object
JSONSchemaProps is a JSON-Schema following Specification Draft 4 (http://json-schema.org/).Same definition as openAPIV3Schema

Type: object

Each additional property must conform to the following schema

Type: object
JSONSchemaProps is a JSON-Schema following Specification Draft 4 (http://json-schema.org/).Same definition as openAPIV3Schema

Type: object

Each additional property must conform to the following schema

Type: object
JSONSchemaProps is a JSON-Schema following Specification Draft 4 (http://json-schema.org/).Same definition as openAPIV3Schema

Type: array of string
No Additional Items

Each item of this array must be:

Type: string
Version is the version this resource belongs in Should be always first item in Versions field if provided. Optional, but at least one of Version or Versions must be set. Deprecated: Please use `Versions`.

Type: array
Versions is the list of all supported versions for this resource. If Version field is provided, this field is optional. Validation: All versions must use the same validation schema for now. i.e., top level Validation field is applied to all of these versions. Order: The version name will be used to compute the order. If the version string is "kube-like", it will sort above non "kube-like" version strings, which are ordered lexicographically. "Kube-like" versions start with a "v", then are followed by a number (the major version), then optionally the string "alpha" or "beta" and another number (the minor version). These are sorted first by GA > beta > alpha (where GA is a version with no suffix such as beta or alpha), and then by comparing major version, then minor version. An example sorted list of versions: v10, v2, v1, v11beta2, v10beta3, v3beta1, v12alpha1, v11alpha2, foo1, foo10.
No Additional Items

Each item of this array must be:

Type: object
CustomResourceDefinitionVersion describes a version for CRD.

Type: array
AdditionalPrinterColumns are additional columns shown e.g. in kubectl next to the name. Defaults to a created-at column. Top-level and per-version columns are mutually exclusive. Per-version columns must not all be set to identical values (top-level columns should be used instead) This field is alpha-level and is only honored by servers that enable the CustomResourceWebhookConversion feature. NOTE: CRDs created prior to 1.13 populated the top-level additionalPrinterColumns field by default. To apply an update that changes to per-version additionalPrinterColumns, the top-level additionalPrinterColumns field must be explicitly set to null
No Additional Items

Each item of this array must be:

Type: string
Name is the version name, e.g. “v1”, “v2beta1”, etc.

Type: object
Schema describes the schema for CustomResource used in validation, pruning, and defaulting. Top-level and per-version schemas are mutually exclusive. Per-version schemas must not all be set to identical values (top-level validation schema should be used instead) This field is alpha-level and is only honored by servers that enable the CustomResourceWebhookConversion feature.Same definition as validation

Type: boolean
Served is a flag enabling/disabling this version from being served via REST APIs

Type: boolean
Storage flags the version as storage version. There must be exactly one flagged as storage version.

Type: object
Subresources describes the subresources for CustomResource Top-level and per-version subresources are mutually exclusive. Per-version subresources must not all be set to identical values (top-level subresources should be used instead) This field is alpha-level and is only honored by servers that enable the CustomResourceWebhookConversion feature.Same definition as subresources

Type: object
Status indicates the actual state of the CustomResourceDefinition

Type: object
AcceptedNames are the names that are actually being used to serve discovery They may be different than the names in spec.Same definition as names

Type: array
Conditions indicate state for particular aspects of a CustomResourceDefinition No Additional Items

Each item of this array must be:

Type: object
CustomResourceDefinitionCondition contains details for the current condition of this pod.

Type: string
Last time the condition transitioned from one status to another.Same definition as creationTimestamp

Type: string
Human-readable message indicating details about last transition.

Type: string
Unique, one-word, CamelCase reason for the condition's last transition.

Type: string
Status is the status of the condition. Can be True, False, Unknown.

Type: string
Type is the type of the condition.

Type: array of string
StoredVersions are all versions of CustomResources that were ever persisted. Tracking these versions allows a migration path for stored versions in etcd. The field is mutable so the migration controller can first finish a migration to another version (i.e. that no old objects are left in the storage), and then remove the rest of the versions from this list. None of the versions in this list can be removed from the spec.Versions field. No Additional Items

Each item of this array must be:

Type: object
CustomResourceDefinitionCondition contains details for the current condition of this pod.Same definition as oneOf_i526_status_conditions_items
Type: object
CustomResourceDefinitionList is a list of CustomResourceDefinition objects.

Type: string
APIVersion defines the versioned schema of this representation of an object. Servers should convert recognized schemas to the latest internal value, and may reject unrecognized values. More info: https://git.k8s.io/community/contributors/devel/api-conventions.md#resources

Type: array
Items individual CustomResourceDefinitions No Additional Items

Each item of this array must be:

Type: object
CustomResourceDefinition represents a resource that should be exposed on the API server. Its name MUST be in the format <.spec.name>.<.spec.group>.Same definition as oneOf_i526

Type: enum (of string)
Kind is a string value representing the REST resource this object represents. Servers may infer this from the endpoint the client submits requests to. Cannot be updated. In CamelCase. More info: https://git.k8s.io/community/contributors/devel/api-conventions.md#types-kinds

Must be one of:

  • "CustomResourceDefinitionList"

Type: object
ListMeta describes metadata that synthetic resources must have, including lists and various status objects. A resource may have only one of {ObjectMeta, ListMeta}.Same definition as metadata
Type: object
CustomResourceDefinitionNames indicates the names to serve this CustomResourceDefinitionSame definition as names
Type: object
CustomResourceDefinitionSpec describes how a user wants their resource to appearSame definition as spec
Type: object
CustomResourceDefinitionStatus indicates the state of the CustomResourceDefinitionSame definition as status
Type: object
CustomResourceSubresourceScale defines how to serve the scale subresource for CustomResources.Same definition as scale
Type: object
CustomResourceSubresourceStatus defines how to serve the status subresource for CustomResources. Status is represented by the `.status` JSON path inside of a CustomResource. When set, * exposes a /status subresource for the custom resource * PUT requests to the /status subresource take a custom resource object, and ignore changes to anything except the status stanza * PUT/POST/PATCH requests to the custom resource ignore changes to the status stanzaSame definition as status
Type: object
CustomResourceSubresources defines the status and scale subresources for CustomResources.Same definition as subresources
Type: object
CustomResourceValidation is a list of validation methods for CustomResources.Same definition as validation
Type: object
ExternalDocumentation allows referencing an external resource for extended documentation.Same definition as externalDocs
Type: object
JSON represents any valid JSON value. These types are supported: bool, int64, float64, string, []interface{}, map[string]interface{} and nil.Same definition as default
Type: object
JSONSchemaProps is a JSON-Schema following Specification Draft 4 (http://json-schema.org/).Same definition as openAPIV3Schema
Type: object
JSONSchemaPropsOrArray represents a value that can either be a JSONSchemaProps or an array of JSONSchemaProps. Mainly here for serialization purposes.Same definition as items
Type: object
JSONSchemaPropsOrBool represents JSONSchemaProps or a boolean value. Defaults to true for the boolean property.Same definition as additionalItems
Type: object
ServiceReference holds a reference to Service.legacy.k8s.ioSame definition as service
Type: object
WebhookClientConfig contains the information to make a TLS connection with the webhook. It has the same field as admissionregistration.v1beta1.WebhookClientConfig.Same definition as webhookClientConfig
Type: object
APIGroup contains the name, the supported versions, and the preferred version of a group.

Type: string
APIVersion defines the versioned schema of this representation of an object. Servers should convert recognized schemas to the latest internal value, and may reject unrecognized values. More info: https://git.k8s.io/community/contributors/devel/api-conventions.md#resources

Type: enum (of string)
Kind is a string value representing the REST resource this object represents. Servers may infer this from the endpoint the client submits requests to. Cannot be updated. In CamelCase. More info: https://git.k8s.io/community/contributors/devel/api-conventions.md#types-kinds

Must be one of:

  • "APIGroup"

Type: string
name is the name of the group.

Type: object
preferredVersion is the version preferred by the API server, which probably is the storage version.

Type: string
groupVersion specifies the API group and version in the form "group/version"

Type: string
version specifies the version in the form of "version". This is to save the clients the trouble of splitting the GroupVersion.

Type: array
a map of client CIDR to server address that is serving this group. This is to help clients reach servers in the most network-efficient way possible. Clients can use the appropriate server address as per the CIDR that they match. In case of multiple matches, clients should use the longest matching CIDR. The server returns only those CIDRs that it thinks that the client can match. For example: the master will return an internal IP CIDR only, if the client reaches the server using an internal IP. Server looks at X-Forwarded-For header or X-Real-Ip header or request.RemoteAddr (in that order) to get the client IP.
No Additional Items

Each item of this array must be:

Type: object
ServerAddressByClientCIDR helps the client to determine the server address that they should use, depending on the clientCIDR that they match.

Type: string
The CIDR with which clients can match their IP to figure out the server address that they should use.

Type: string
Address of this server, suitable for a client that matches the above CIDR. This can be a hostname, hostname:port, IP or IP:port.

Type: array
versions are the versions supported in this group. No Additional Items

Each item of this array must be:

Type: object
GroupVersion contains the "group/version" and "version" string of a version. It is made a struct to keep extensibility.Same definition as preferredVersion
Type: object
APIGroupList is a list of APIGroup, to allow clients to discover the API at /apis.

Type: string
APIVersion defines the versioned schema of this representation of an object. Servers should convert recognized schemas to the latest internal value, and may reject unrecognized values. More info: https://git.k8s.io/community/contributors/devel/api-conventions.md#resources

Type: array
groups is a list of APIGroup. No Additional Items

Each item of this array must be:

Type: object
APIGroup contains the name, the supported versions, and the preferred version of a group.Same definition as oneOf_i546

Type: enum (of string)
Kind is a string value representing the REST resource this object represents. Servers may infer this from the endpoint the client submits requests to. Cannot be updated. In CamelCase. More info: https://git.k8s.io/community/contributors/devel/api-conventions.md#types-kinds

Must be one of:

  • "APIGroupList"
Type: object
APIResource specifies the name of a resource and whether it is namespaced.

Type: array of string
categories is a list of the grouped resources this resource belongs to (e.g. 'all') No Additional Items

Each item of this array must be:

Type: string
group is the preferred group of the resource. Empty implies the group of the containing resource list. For subresources, this may have a different value, for example: Scale".

Type: string
kind is the kind for the resource (e.g. 'Foo' is the kind for a resource 'foo')

Type: string
name is the plural name of the resource.

Type: boolean
namespaced indicates if a resource is namespaced or not.

Type: array of string
shortNames is a list of suggested short names of the resource. No Additional Items

Each item of this array must be:

Type: string
singularName is the singular name of the resource. This allows clients to handle plural and singular opaquely. The singularName is more correct for reporting status on a single item and both singular and plural are allowed from the kubectl CLI interface.

Type: array of string
verbs is a list of supported kube verbs (this includes get, list, watch, create, update, patch, delete, deletecollection, and proxy) No Additional Items

Each item of this array must be:

Type: string

Type: string
version is the preferred version of the resource. Empty implies the version of the containing resource list For subresources, this may have a different value, for example: v1 (while inside a v1beta1 version of the core resource's group)".
Type: object
APIResourceList is a list of APIResource, it is used to expose the name of the resources supported in a specific group and version, and if the resource is namespaced.

Type: string
APIVersion defines the versioned schema of this representation of an object. Servers should convert recognized schemas to the latest internal value, and may reject unrecognized values. More info: https://git.k8s.io/community/contributors/devel/api-conventions.md#resources

Type: string
groupVersion is the group and version this APIResourceList is for.

Type: enum (of string)
Kind is a string value representing the REST resource this object represents. Servers may infer this from the endpoint the client submits requests to. Cannot be updated. In CamelCase. More info: https://git.k8s.io/community/contributors/devel/api-conventions.md#types-kinds

Must be one of:

  • "APIResourceList"

Type: array
resources contains the name of the resources and if they are namespaced. No Additional Items

Each item of this array must be:

Type: object
APIResource specifies the name of a resource and whether it is namespaced.Same definition as oneOf_i548
Type: object
APIVersions lists the versions that are available, to allow clients to discover the API at /api, which is the root path of the legacy v1 API.

Type: string
APIVersion defines the versioned schema of this representation of an object. Servers should convert recognized schemas to the latest internal value, and may reject unrecognized values. More info: https://git.k8s.io/community/contributors/devel/api-conventions.md#resources

Type: enum (of string)
Kind is a string value representing the REST resource this object represents. Servers may infer this from the endpoint the client submits requests to. Cannot be updated. In CamelCase. More info: https://git.k8s.io/community/contributors/devel/api-conventions.md#types-kinds

Must be one of:

  • "APIVersions"

Type: array
a map of client CIDR to server address that is serving this group. This is to help clients reach servers in the most network-efficient way possible. Clients can use the appropriate server address as per the CIDR that they match. In case of multiple matches, clients should use the longest matching CIDR. The server returns only those CIDRs that it thinks that the client can match. For example: the master will return an internal IP CIDR only, if the client reaches the server using an internal IP. Server looks at X-Forwarded-For header or X-Real-Ip header or request.RemoteAddr (in that order) to get the client IP.
No Additional Items

Each item of this array must be:

Type: object
ServerAddressByClientCIDR helps the client to determine the server address that they should use, depending on the clientCIDR that they match.Same definition as oneOf_i546_serverAddressByClientCIDRs_items

Type: array of string
versions are the api versions that are available. No Additional Items

Each item of this array must be:

Type: object
DeleteOptions may be provided when deleting an API object.Same definition as deleteOptions
Type: object
GroupVersion contains the "group/version" and "version" string of a version. It is made a struct to keep extensibility.Same definition as preferredVersion
Type: object
Initializer is information about an initializer that has not yet completed.Same definition as oneOf_i1_metadata_initializers_pending_items
Type: object
Initializers tracks the progress of initialization.Same definition as initializers
Type: object
A label selector is a label query over a set of resources. The result of matchLabels and matchExpressions are ANDed. An empty label selector matches all objects. A null label selector matches no objects.Same definition as namespaceSelector
Type: object
A label selector requirement is a selector that contains values, a key, and an operator that relates the key and values.Same definition as oneOf_i4_webhooks_items_namespaceSelector_matchExpressions_items
Type: object
ListMeta describes metadata that synthetic resources must have, including lists and various status objects. A resource may have only one of {ObjectMeta, ListMeta}.Same definition as metadata
Type: string
MicroTime is version of Time with microsecond level precision.Same definition as acquireTime
Type: object
ObjectMeta is metadata that all persisted resources must have, which includes all objects users must create.Same definition as metadata
Type: object
OwnerReference contains enough information to let you identify an owning object. An owning object must be in the same namespace as the dependent, or be cluster-scoped, so there is no namespace field.Same definition as oneOf_i1_metadata_ownerReferences_items
Type: object
Patch is provided to give a concrete name and type to the Kubernetes PATCH request body.
Type: object
Preconditions must be fulfilled before an operation (update, delete, etc.) is carried out.Same definition as preconditions
Type: object
ServerAddressByClientCIDR helps the client to determine the server address that they should use, depending on the clientCIDR that they match.Same definition as oneOf_i546_serverAddressByClientCIDRs_items
Type: object
Status is a return value for calls that don't return other objects.Same definition as result
Type: object
StatusCause provides more information about an api.Status failure, including cases when multiple errors are encountered.Same definition as oneOf_i1_metadata_initializers_result_details_causes_items
Type: object
StatusDetails is a set of additional properties that MAY be set by the server to provide additional information about a response. The Reason field of a Status object defines what attributes will be set. Clients must ignore fields that do not match the defined type of each attribute, and should assume that any attribute may be empty, invalid, or under defined.Same definition as details
Type: string
Time is a wrapper around time.Time which supports correct marshaling to YAML and JSON. Wrappers are provided for many of the factory methods that the time package offers.Same definition as creationTimestamp
Type: object
Event represents a single event to a watched resource.

Type: object
Object is: * If Type is Added or Modified: the new state of the object. * If Type is Deleted: the state of the object immediately before deletion. * If Type is Error: *Status is recommended; other types may make sense depending on context.
Same definition as data

Type: string
Type: object
RawExtension is used to hold extensions in external versions. To use this, make a field which has RawExtension as its type in your external, versioned struct, and Object in your internal struct. You also need to register your various plugin types. // Internal package: type MyAPIObject struct { runtime.TypeMeta `json:",inline"` MyPlugin runtime.Object `json:"myPlugin"` } type PluginA struct { AOption string `json:"aOption"` } // External package: type MyAPIObject struct { runtime.TypeMeta `json:",inline"` MyPlugin runtime.RawExtension `json:"myPlugin"` } type PluginA struct { AOption string `json:"aOption"` } // On the wire, the JSON will look something like this: { "kind":"MyAPIObject", "apiVersion":"v1", "myPlugin": { "kind":"PluginA", "aOption":"foo", }, } So what happens? Decode first uses json or yaml to unmarshal the serialized data into your external MyAPIObject. That causes the raw JSON to be stored, but not unpacked. The next step is to copy (using pkg/conversion) into the internal struct. The runtime package's DefaultScheme has conversion functions installed which will unpack the JSON stored in RawExtension, turning it into the correct object type, and storing it in the Object. (TODO: In the case where the object is of an unknown type, a runtime.Unknown object will be created and stored.)
Same definition as data
Type: object
Info contains versioning information. how we'll want to distribute that information.

Type: string

Type: string

Type: string

Type: string

Type: string

Type: string

Type: string

Type: string

Type: string
Type: object
APIService represents a server for a particular GroupVersion. Name must be "version.group".

Type: string
APIVersion defines the versioned schema of this representation of an object. Servers should convert recognized schemas to the latest internal value, and may reject unrecognized values. More info: https://git.k8s.io/community/contributors/devel/api-conventions.md#resources

Type: enum (of string)
Kind is a string value representing the REST resource this object represents. Servers may infer this from the endpoint the client submits requests to. Cannot be updated. In CamelCase. More info: https://git.k8s.io/community/contributors/devel/api-conventions.md#types-kinds

Must be one of:

  • "APIService"

Type: object
ObjectMeta is metadata that all persisted resources must have, which includes all objects users must create.Same definition as metadata

Type: object
Spec contains information for locating and communicating with a server

Type: stringFormat: byte
CABundle is a PEM encoded CA bundle which will be used to validate an API server's serving certificate. If unspecified, system trust roots on the apiserver are used.

Type: string
Group is the API group name this server hosts

Type: integerFormat: int32
GroupPriorityMininum is the priority this group should have at least. Higher priority means that the group is preferred by clients over lower priority ones. Note that other versions of this group might specify even higher GroupPriorityMininum values such that the whole group gets a higher priority. The primary sort is based on GroupPriorityMinimum, ordered highest number to lowest (20 before 10). The secondary sort is based on the alphabetical comparison of the name of the object. (v1.bar before v1.foo) We'd recommend something like: *.k8s.io (except extensions) at 18000 and PaaSes (OpenShift, Deis) are recommended to be in the 2000s

Type: boolean
InsecureSkipTLSVerify disables TLS certificate verification when communicating with this server. This is strongly discouraged. You should use the CABundle instead.

Type: object
Service is a reference to the service for this API server. It must communicate on port 443 If the Service is nil, that means the handling for the API groupversion is handled locally on this server. The call will simply delegate to the normal handler chain to be fulfilled.

Type: string
Name is the name of the service

Type: string
Namespace is the namespace of the service

Type: string
Version is the API version this server hosts. For example, "v1"

Type: integerFormat: int32
VersionPriority controls the ordering of this API version inside of its group. Must be greater than zero. The primary sort is based on VersionPriority, ordered highest to lowest (20 before 10). Since it's inside of a group, the number can be small, probably in the 10s. In case of equal version priorities, the version string will be used to compute the order inside a group. If the version string is "kube-like", it will sort above non "kube-like" version strings, which are ordered lexicographically. "Kube-like" versions start with a "v", then are followed by a number (the major version), then optionally the string "alpha" or "beta" and another number (the minor version). These are sorted first by GA > beta > alpha (where GA is a version with no suffix such as beta or alpha), and then by comparing major version, then minor version. An example sorted list of versions: v10, v2, v1, v11beta2, v10beta3, v3beta1, v12alpha1, v11alpha2, foo1, foo10.

Type: object
Status contains derived information about an API server

Type: array
Current service state of apiService. No Additional Items

Each item of this array must be:

Type: object

Type: string
Last time the condition transitioned from one status to another.Same definition as creationTimestamp

Type: string
Human-readable message indicating details about last transition.

Type: string
Unique, one-word, CamelCase reason for the condition's last transition.

Type: string
Status is the status of the condition. Can be True, False, Unknown.

Type: string
Type is the type of the condition.
Type: object
APIServiceList is a list of APIService objects.

Type: string
APIVersion defines the versioned schema of this representation of an object. Servers should convert recognized schemas to the latest internal value, and may reject unrecognized values. More info: https://git.k8s.io/community/contributors/devel/api-conventions.md#resources

Type: array
No Additional Items

Each item of this array must be:

Type: object
APIService represents a server for a particular GroupVersion. Name must be "version.group".Same definition as oneOf_i572

Type: enum (of string)
Kind is a string value representing the REST resource this object represents. Servers may infer this from the endpoint the client submits requests to. Cannot be updated. In CamelCase. More info: https://git.k8s.io/community/contributors/devel/api-conventions.md#types-kinds

Must be one of:

  • "APIServiceList"

Type: object
ListMeta describes metadata that synthetic resources must have, including lists and various status objects. A resource may have only one of {ObjectMeta, ListMeta}.Same definition as metadata
Type: object
APIServiceSpec contains information for locating and communicating with a server. Only https is supported, though you are able to disable certificate verification.Same definition as spec
Type: object
APIServiceStatus contains derived information about an API serverSame definition as status
Type: object
ServiceReference holds a reference to Service.legacy.k8s.ioSame definition as service
Type: object
APIService represents a server for a particular GroupVersion. Name must be "version.group".

Type: string
APIVersion defines the versioned schema of this representation of an object. Servers should convert recognized schemas to the latest internal value, and may reject unrecognized values. More info: https://git.k8s.io/community/contributors/devel/api-conventions.md#resources

Type: enum (of string)
Kind is a string value representing the REST resource this object represents. Servers may infer this from the endpoint the client submits requests to. Cannot be updated. In CamelCase. More info: https://git.k8s.io/community/contributors/devel/api-conventions.md#types-kinds

Must be one of:

  • "APIService"

Type: object
ObjectMeta is metadata that all persisted resources must have, which includes all objects users must create.Same definition as metadata

Type: object
Spec contains information for locating and communicating with a server

Type: stringFormat: byte
CABundle is a PEM encoded CA bundle which will be used to validate an API server's serving certificate. If unspecified, system trust roots on the apiserver are used.

Type: string
Group is the API group name this server hosts

Type: integerFormat: int32
GroupPriorityMininum is the priority this group should have at least. Higher priority means that the group is preferred by clients over lower priority ones. Note that other versions of this group might specify even higher GroupPriorityMininum values such that the whole group gets a higher priority. The primary sort is based on GroupPriorityMinimum, ordered highest number to lowest (20 before 10). The secondary sort is based on the alphabetical comparison of the name of the object. (v1.bar before v1.foo) We'd recommend something like: *.k8s.io (except extensions) at 18000 and PaaSes (OpenShift, Deis) are recommended to be in the 2000s

Type: boolean
InsecureSkipTLSVerify disables TLS certificate verification when communicating with this server. This is strongly discouraged. You should use the CABundle instead.

Type: object
Service is a reference to the service for this API server. It must communicate on port 443 If the Service is nil, that means the handling for the API groupversion is handled locally on this server. The call will simply delegate to the normal handler chain to be fulfilled.

Type: string
Name is the name of the service

Type: string
Namespace is the namespace of the service

Type: string
Version is the API version this server hosts. For example, "v1"

Type: integerFormat: int32
VersionPriority controls the ordering of this API version inside of its group. Must be greater than zero. The primary sort is based on VersionPriority, ordered highest to lowest (20 before 10). Since it's inside of a group, the number can be small, probably in the 10s. In case of equal version priorities, the version string will be used to compute the order inside a group. If the version string is "kube-like", it will sort above non "kube-like" version strings, which are ordered lexicographically. "Kube-like" versions start with a "v", then are followed by a number (the major version), then optionally the string "alpha" or "beta" and another number (the minor version). These are sorted first by GA > beta > alpha (where GA is a version with no suffix such as beta or alpha), and then by comparing major version, then minor version. An example sorted list of versions: v10, v2, v1, v11beta2, v10beta3, v3beta1, v12alpha1, v11alpha2, foo1, foo10.

Type: object
Status contains derived information about an API server

Type: array
Current service state of apiService. No Additional Items

Each item of this array must be:

Type: object

Type: string
Last time the condition transitioned from one status to another.Same definition as creationTimestamp

Type: string
Human-readable message indicating details about last transition.

Type: string
Unique, one-word, CamelCase reason for the condition's last transition.

Type: string
Status is the status of the condition. Can be True, False, Unknown.

Type: string
Type is the type of the condition.
Type: object
APIServiceList is a list of APIService objects.

Type: string
APIVersion defines the versioned schema of this representation of an object. Servers should convert recognized schemas to the latest internal value, and may reject unrecognized values. More info: https://git.k8s.io/community/contributors/devel/api-conventions.md#resources

Type: array
No Additional Items

Each item of this array must be:

Type: object
APIService represents a server for a particular GroupVersion. Name must be "version.group".Same definition as oneOf_i578

Type: enum (of string)
Kind is a string value representing the REST resource this object represents. Servers may infer this from the endpoint the client submits requests to. Cannot be updated. In CamelCase. More info: https://git.k8s.io/community/contributors/devel/api-conventions.md#types-kinds

Must be one of:

  • "APIServiceList"

Type: object
ListMeta describes metadata that synthetic resources must have, including lists and various status objects. A resource may have only one of {ObjectMeta, ListMeta}.Same definition as metadata
Type: object
APIServiceSpec contains information for locating and communicating with a server. Only https is supported, though you are able to disable certificate verification.Same definition as spec
Type: object
APIServiceStatus contains derived information about an API serverSame definition as status
Type: object
ServiceReference holds a reference to Service.legacy.k8s.ioSame definition as service
Type: object
Deprecated. Please use io.k8s.api.core.v1.AWSElasticBlockStoreVolumeSource instead. Same definition as awsElasticBlockStore
Type: object
Deprecated. Please use io.k8s.api.core.v1.Affinity instead. Same definition as affinity
Type: object
Deprecated. Please use io.k8s.api.core.v1.AttachedVolume instead. Same definition as oneOf_i202
Type: object
Deprecated. Please use io.k8s.api.core.v1.AzureDiskVolumeSource instead. Same definition as azureDisk
Type: object
Deprecated. Please use io.k8s.api.core.v1.AzureFileVolumeSource instead. Same definition as azureFile
Type: object
Deprecated. Please use io.k8s.api.core.v1.Binding instead. Same definition as oneOf_i206
Type: object
Deprecated. Please use io.k8s.api.core.v1.Capabilities instead. Same definition as capabilities
Type: object
Deprecated. Please use io.k8s.api.core.v1.CephFSVolumeSource instead. Same definition as cephfs
Type: object
Deprecated. Please use io.k8s.api.core.v1.CinderVolumeSource instead. Same definition as cinder
Type: object
Deprecated. Please use io.k8s.api.core.v1.ComponentCondition instead. Same definition as oneOf_i214
Type: object
Deprecated. Please use io.k8s.api.core.v1.ComponentStatus instead. Same definition as oneOf_i215
Type: object
Deprecated. Please use io.k8s.api.core.v1.ComponentStatusList instead. Same definition as oneOf_i216
Type: object
Deprecated. Please use io.k8s.api.core.v1.ConfigMap instead. Same definition as oneOf_i217
Type: object
Deprecated. Please use io.k8s.api.core.v1.ConfigMapEnvSource instead. Same definition as configMapRef
Type: object
Deprecated. Please use io.k8s.api.core.v1.ConfigMapKeySelector instead. Same definition as configMapKeyRef
Type: object
Deprecated. Please use io.k8s.api.core.v1.ConfigMapList instead. Same definition as oneOf_i220
Type: object
Deprecated. Please use io.k8s.api.core.v1.ConfigMapProjection instead. Same definition as configMap
Type: object
Deprecated. Please use io.k8s.api.core.v1.ConfigMapVolumeSource instead. Same definition as configMap
Type: object
Deprecated. Please use io.k8s.api.core.v1.Container instead. Same definition as oneOf_i14_spec_template_spec_containers_items
Type: object
Deprecated. Please use io.k8s.api.core.v1.ContainerImage instead. Same definition as oneOf_i225
Type: object
Deprecated. Please use io.k8s.api.core.v1.ContainerPort instead. Same definition as oneOf_i14_spec_template_spec_containers_items_ports_items
Type: object
Deprecated. Please use io.k8s.api.core.v1.ContainerState instead. Same definition as oneOf_i227
Type: object
Deprecated. Please use io.k8s.api.core.v1.ContainerStateRunning instead. Same definition as running
Type: object
Deprecated. Please use io.k8s.api.core.v1.ContainerStateTerminated instead. Same definition as terminated
Type: object
Deprecated. Please use io.k8s.api.core.v1.ContainerStateWaiting instead. Same definition as waiting
Type: object
Deprecated. Please use io.k8s.api.core.v1.ContainerStatus instead. Same definition as oneOf_i231
Type: object
Deprecated. Please use io.k8s.api.core.v1.DaemonEndpoint instead. Same definition as oneOf_i232
Type: object
Deprecated. Please use io.k8s.api.core.v1.DownwardAPIProjection instead. Same definition as downwardAPI
Type: object
Deprecated. Please use io.k8s.api.core.v1.DownwardAPIVolumeFile instead. Same definition as oneOf_i14_spec_template_spec_volumes_items_downwardAPI_items_items
Type: object
Deprecated. Please use io.k8s.api.core.v1.DownwardAPIVolumeSource instead. Same definition as downwardAPI
Type: object
Deprecated. Please use io.k8s.api.core.v1.EmptyDirVolumeSource instead. Same definition as emptyDir
Type: object
Deprecated. Please use io.k8s.api.core.v1.EndpointAddress instead. Same definition as oneOf_i237
Type: object
Deprecated. Please use io.k8s.api.core.v1.EndpointPort instead. Same definition as oneOf_i238
Type: object
Deprecated. Please use io.k8s.api.core.v1.EndpointSubset instead. Same definition as oneOf_i239
Type: object
Deprecated. Please use io.k8s.api.core.v1.Endpoints instead. Same definition as oneOf_i240
Type: object
Deprecated. Please use io.k8s.api.core.v1.EndpointsList instead. Same definition as oneOf_i241
Type: object
Deprecated. Please use io.k8s.api.core.v1.EnvFromSource instead. Same definition as oneOf_i14_spec_template_spec_containers_items_envFrom_items
Type: object
Deprecated. Please use io.k8s.api.core.v1.EnvVar instead. Same definition as oneOf_i14_spec_template_spec_containers_items_env_items
Type: object
Deprecated. Please use io.k8s.api.core.v1.EnvVarSource instead. Same definition as valueFrom
Type: object
Deprecated. Please use io.k8s.api.core.v1.Event instead. Same definition as oneOf_i245
Type: object
Deprecated. Please use io.k8s.api.core.v1.EventList instead. Same definition as oneOf_i246
Type: object
Deprecated. Please use io.k8s.api.core.v1.EventSource instead. Same definition as source
Type: object
Deprecated. Please use io.k8s.api.core.v1.ExecAction instead. Same definition as exec
Type: object
Deprecated. Please use io.k8s.api.core.v1.FCVolumeSource instead. Same definition as fc
Type: object
Deprecated. Please use io.k8s.api.core.v1.FlexVolumeSource instead. Same definition as flexVolume
Type: object
Deprecated. Please use io.k8s.api.core.v1.FlockerVolumeSource instead. Same definition as flocker
Type: object
Deprecated. Please use io.k8s.api.core.v1.GCEPersistentDiskVolumeSource instead. Same definition as gcePersistentDisk
Type: object
Deprecated. Please use io.k8s.api.core.v1.GitRepoVolumeSource instead. Same definition as gitRepo
Type: object
Deprecated. Please use io.k8s.api.core.v1.GlusterfsVolumeSource instead. Same definition as glusterfs
Type: object
Deprecated. Please use io.k8s.api.core.v1.HTTPGetAction instead. Same definition as httpGet
Type: object
Deprecated. Please use io.k8s.api.core.v1.Handler instead. Same definition as postStart
Type: object
Deprecated. Please use io.k8s.api.core.v1.HostAlias instead. Same definition as oneOf_i14_spec_template_spec_hostAliases_items
Type: object
Deprecated. Please use io.k8s.api.core.v1.HostPathVolumeSource instead. Same definition as hostPath
Type: object
Deprecated. Please use io.k8s.api.core.v1.ISCSIVolumeSource instead. Same definition as iscsi
Type: object
Deprecated. Please use io.k8s.api.core.v1.Lifecycle instead. Same definition as lifecycle
Type: object
Deprecated. Please use io.k8s.api.core.v1.LimitRange instead. Same definition as oneOf_i267
Type: object
Deprecated. Please use io.k8s.api.core.v1.LimitRangeItem instead. Same definition as oneOf_i267_spec_limits_items
Type: object
Deprecated. Please use io.k8s.api.core.v1.LimitRangeList instead. Same definition as oneOf_i269
Type: object
Deprecated. Please use io.k8s.api.core.v1.LimitRangeSpec instead. Same definition as spec
Type: object
Deprecated. Please use io.k8s.api.core.v1.LoadBalancerIngress instead. Same definition as oneOf_i271
Type: object
Deprecated. Please use io.k8s.api.core.v1.LoadBalancerStatus instead. Same definition as oneOf_i272
Type: object
Deprecated. Please use io.k8s.api.core.v1.LocalObjectReference instead. Same definition as oneOf_i14_spec_template_spec_imagePullSecrets_items
Type: object
Deprecated. Please use io.k8s.api.core.v1.LocalVolumeSource instead. Same definition as oneOf_i274
Type: object
Deprecated. Please use io.k8s.api.core.v1.NFSVolumeSource instead. Same definition as nfs
Type: object
Deprecated. Please use io.k8s.api.core.v1.Namespace instead. Same definition as oneOf_i276
Type: object
Deprecated. Please use io.k8s.api.core.v1.NamespaceList instead. Same definition as oneOf_i277
Type: object
Deprecated. Please use io.k8s.api.core.v1.NamespaceSpec instead. Same definition as spec
Type: object
Deprecated. Please use io.k8s.api.core.v1.NamespaceStatus instead. Same definition as status
Type: object
Deprecated. Please use io.k8s.api.core.v1.Node instead. Same definition as oneOf_i280
Type: object
Deprecated. Please use io.k8s.api.core.v1.NodeAddress instead. Same definition as oneOf_i280_status_addresses_items
Type: object
Deprecated. Please use io.k8s.api.core.v1.NodeAffinity instead. Same definition as nodeAffinity
Type: object
Deprecated. Please use io.k8s.api.core.v1.NodeCondition instead. Same definition as oneOf_i280_status_conditions_items
Type: object
Deprecated. Please use io.k8s.api.core.v1.NodeDaemonEndpoints instead. Same definition as daemonEndpoints
Type: object
Deprecated. Please use io.k8s.api.core.v1.NodeList instead. Same definition as oneOf_i287
Type: object
Deprecated. Please use io.k8s.api.core.v1.NodeSelector instead. Same definition as requiredDuringSchedulingIgnoredDuringExecution
Type: object
Deprecated. Please use io.k8s.api.core.v1.NodeSelectorTerm instead. Same definition as preference
Type: object
Deprecated. Please use io.k8s.api.core.v1.NodeSpec instead. Same definition as spec
Type: object
Deprecated. Please use io.k8s.api.core.v1.NodeStatus instead. Same definition as status
Type: object
Deprecated. Please use io.k8s.api.core.v1.NodeSystemInfo instead. Same definition as nodeInfo
Type: object
Deprecated. Please use io.k8s.api.core.v1.ObjectFieldSelector instead. Same definition as fieldRef
Type: object
Deprecated. Please use io.k8s.api.core.v1.ObjectReference instead. Same definition as oneOf_i182_status_active_items
Type: object
Deprecated. Please use io.k8s.api.core.v1.PersistentVolume instead. Same definition as oneOf_i296
Type: object
Deprecated. Please use io.k8s.api.core.v1.PersistentVolumeClaim instead. Same definition as oneOf_i34_spec_volumeClaimTemplates_items
Type: object
Deprecated. Please use io.k8s.api.core.v1.PersistentVolumeClaimList instead. Same definition as oneOf_i299
Type: object
Deprecated. Please use io.k8s.api.core.v1.PersistentVolumeClaimSpec instead. Same definition as spec
Type: object
Deprecated. Please use io.k8s.api.core.v1.PersistentVolumeClaimStatus instead. Same definition as status
Type: object
Deprecated. Please use io.k8s.api.core.v1.PersistentVolumeClaimVolumeSource instead. Same definition as persistentVolumeClaim
Type: object
Deprecated. Please use io.k8s.api.core.v1.PersistentVolumeList instead. Same definition as oneOf_i303
Type: object
Deprecated. Please use io.k8s.api.core.v1.PersistentVolumeSpec instead. Same definition as spec
Type: object
Deprecated. Please use io.k8s.api.core.v1.PersistentVolumeStatus instead. Same definition as status
Type: object
Deprecated. Please use io.k8s.api.core.v1.PhotonPersistentDiskVolumeSource instead. Same definition as photonPersistentDisk
Type: object
Deprecated. Please use io.k8s.api.core.v1.Pod instead. Same definition as oneOf_i307
Type: object
Deprecated. Please use io.k8s.api.core.v1.PodAffinity instead. Same definition as podAffinity
Type: object
Deprecated. Please use io.k8s.api.core.v1.PodAffinityTerm instead. Same definition as podAffinityTerm
Type: object
Deprecated. Please use io.k8s.api.core.v1.PodAntiAffinity instead. Same definition as podAntiAffinity
Type: object
Deprecated. Please use io.k8s.api.core.v1.PodCondition instead. Same definition as oneOf_i307_status_conditions_items
Type: object
Deprecated. Please use io.k8s.api.core.v1.PodList instead. Same definition as oneOf_i314
Type: object
Deprecated. Please use io.k8s.api.core.v1.PodSecurityContext instead. Same definition as securityContext
Type: object
Deprecated. Please use io.k8s.api.core.v1.PodSpec instead. Same definition as spec
Type: object
Deprecated. Please use io.k8s.api.core.v1.PodStatus instead. Same definition as status
Type: object
Deprecated. Please use io.k8s.api.core.v1.PodTemplate instead. Same definition as oneOf_i319
Type: object
Deprecated. Please use io.k8s.api.core.v1.PodTemplateList instead. Same definition as oneOf_i320
Type: object
Deprecated. Please use io.k8s.api.core.v1.PodTemplateSpec instead. Same definition as template
Type: object
Deprecated. Please use io.k8s.api.core.v1.PortworxVolumeSource instead. Same definition as portworxVolume
Type: object
Deprecated. Please use io.k8s.api.core.v1.Probe instead. Same definition as livenessProbe
Type: object
Deprecated. Please use io.k8s.api.core.v1.ProjectedVolumeSource instead. Same definition as projected
Type: object
Deprecated. Please use io.k8s.api.core.v1.QuobyteVolumeSource instead. Same definition as quobyte
Type: object
Deprecated. Please use io.k8s.api.core.v1.RBDVolumeSource instead. Same definition as rbd
Type: object
Deprecated. Please use io.k8s.api.core.v1.ReplicationController instead. Same definition as oneOf_i329
Type: object
Deprecated. Please use io.k8s.api.core.v1.ReplicationControllerCondition instead. Same definition as oneOf_i329_status_conditions_items
Type: object
Deprecated. Please use io.k8s.api.core.v1.ReplicationControllerList instead. Same definition as oneOf_i331
Type: object
Deprecated. Please use io.k8s.api.core.v1.ReplicationControllerSpec instead. Same definition as spec
Type: object
Deprecated. Please use io.k8s.api.core.v1.ReplicationControllerStatus instead. Same definition as status
Type: object
Deprecated. Please use io.k8s.api.core.v1.ResourceFieldSelector instead. Same definition as resourceFieldRef
Type: object
Deprecated. Please use io.k8s.api.core.v1.ResourceQuota instead. Same definition as oneOf_i335
Type: object
Deprecated. Please use io.k8s.api.core.v1.ResourceQuotaList instead. Same definition as oneOf_i336
Type: object
Deprecated. Please use io.k8s.api.core.v1.ResourceQuotaSpec instead. Same definition as spec
Type: object
Deprecated. Please use io.k8s.api.core.v1.ResourceQuotaStatus instead. Same definition as status
Type: object
Deprecated. Please use io.k8s.api.core.v1.ResourceRequirements instead. Same definition as resources
Type: object
Deprecated. Please use io.k8s.api.core.v1.SELinuxOptions instead. Same definition as seLinuxOptions
Type: object
Deprecated. Please use io.k8s.api.core.v1.ScaleIOVolumeSource instead. Same definition as scaleIO
Type: object
Deprecated. Please use io.k8s.api.core.v1.Secret instead. Same definition as oneOf_i345
Type: object
Deprecated. Please use io.k8s.api.core.v1.SecretEnvSource instead. Same definition as secretRef
Type: object
Deprecated. Please use io.k8s.api.core.v1.SecretKeySelector instead. Same definition as secretKeyRef
Type: object
Deprecated. Please use io.k8s.api.core.v1.SecretList instead. Same definition as oneOf_i348
Type: object
Deprecated. Please use io.k8s.api.core.v1.SecretProjection instead. Same definition as secret
Type: object
Deprecated. Please use io.k8s.api.core.v1.SecretVolumeSource instead. Same definition as secret
Type: object
Deprecated. Please use io.k8s.api.core.v1.SecurityContext instead. Same definition as securityContext
Type: object
Deprecated. Please use io.k8s.api.core.v1.Service instead. Same definition as oneOf_i353
Type: object
Deprecated. Please use io.k8s.api.core.v1.ServiceAccount instead. Same definition as oneOf_i354
Type: object
Deprecated. Please use io.k8s.api.core.v1.ServiceAccountList instead. Same definition as oneOf_i355
Type: object
Deprecated. Please use io.k8s.api.core.v1.ServiceList instead. Same definition as oneOf_i357
Type: object
Deprecated. Please use io.k8s.api.core.v1.ServicePort instead. Same definition as oneOf_i353_spec_ports_items
Type: object
Deprecated. Please use io.k8s.api.core.v1.ServiceSpec instead. Same definition as spec
Type: object
Deprecated. Please use io.k8s.api.core.v1.ServiceStatus instead. Same definition as status
Type: object
Deprecated. Please use io.k8s.api.core.v1.StorageOSPersistentVolumeSource instead. Same definition as storageos
Type: object
Deprecated. Please use io.k8s.api.core.v1.StorageOSVolumeSource instead. Same definition as storageos
Type: object
Deprecated. Please use io.k8s.api.core.v1.TCPSocketAction instead. Same definition as tcpSocket
Type: object
Deprecated. Please use io.k8s.api.core.v1.Taint instead. Same definition as oneOf_i280_spec_taints_items
Type: object
Deprecated. Please use io.k8s.api.core.v1.Toleration instead. Same definition as oneOf_i14_spec_template_spec_tolerations_items
Type: object
Deprecated. Please use io.k8s.api.core.v1.Volume instead. Same definition as oneOf_i14_spec_template_spec_volumes_items
Type: object
Deprecated. Please use io.k8s.api.core.v1.VsphereVirtualDiskVolumeSource instead. Same definition as vsphereVolume
Type: object
Deprecated. Please use io.k8s.api.admissionregistration.v1alpha1.Initializer instead. Same definition as oneOf_i0
Type: object
Deprecated. Please use io.k8s.api.admissionregistration.v1alpha1.InitializerConfiguration instead. Same definition as oneOf_i1
Type: object
Deprecated. Please use io.k8s.api.admissionregistration.v1alpha1.InitializerConfigurationList instead. Same definition as oneOf_i2
Type: object
Deprecated. Please use io.k8s.api.admissionregistration.v1alpha1.Rule instead. Same definition as oneOf_i0_rules_items
Type: object
Deprecated. Please use io.k8s.api.apps.v1beta1.ControllerRevision instead. Same definition as oneOf_i40
Type: object
Deprecated. Please use io.k8s.api.apps.v1beta1.ControllerRevisionList instead. Same definition as oneOf_i41
Type: object
Deprecated. Please use io.k8s.api.apps.v1beta1.Deployment instead. Same definition as oneOf_i42
Type: object
Deprecated. Please use io.k8s.api.apps.v1beta1.DeploymentCondition instead. Same definition as oneOf_i42_status_conditions_items
Type: object
Deprecated. Please use io.k8s.api.apps.v1beta1.DeploymentList instead. Same definition as oneOf_i44
Type: object
Deprecated. Please use io.k8s.api.apps.v1beta1.DeploymentRollback instead. Same definition as oneOf_i45
Type: object
Deprecated. Please use io.k8s.api.apps.v1beta1.DeploymentSpec instead. Same definition as spec
Type: object
Deprecated. Please use io.k8s.api.apps.v1beta1.DeploymentStatus instead. Same definition as status
Type: object
Deprecated. Please use io.k8s.api.apps.v1beta1.DeploymentStrategy instead. Same definition as strategy
Type: object
Deprecated. Please use io.k8s.api.apps.v1beta1.RollbackConfig instead. Same definition as rollbackTo
Type: object
Deprecated. Please use io.k8s.api.apps.v1beta1.RollingUpdateDeployment instead. Same definition as rollingUpdate
Type: object
Deprecated. Please use io.k8s.api.apps.v1beta1.RollingUpdateStatefulSetStrategy instead. Same definition as oneOf_i51
Type: object
Deprecated. Please use io.k8s.api.apps.v1beta1.Scale instead. Same definition as oneOf_i52
Type: object
Deprecated. Please use io.k8s.api.apps.v1beta1.ScaleSpec instead. Same definition as spec
Type: object
Deprecated. Please use io.k8s.api.apps.v1beta1.ScaleStatus instead. Same definition as status
Type: object
Deprecated. Please use io.k8s.api.apps.v1beta1.StatefulSet instead. Same definition as oneOf_i55
Type: object
Deprecated. Please use io.k8s.api.apps.v1beta1.StatefulSetList instead. Same definition as oneOf_i57
Type: object
Deprecated. Please use io.k8s.api.apps.v1beta1.StatefulSetSpec instead. Same definition as spec
Type: object
Deprecated. Please use io.k8s.api.apps.v1beta1.StatefulSetStatus instead. Same definition as status
Type: object
Deprecated. Please use io.k8s.api.apps.v1beta1.StatefulSetUpdateStrategy instead. Same definition as updateStrategy
Type: object
Deprecated. Please use io.k8s.api.authentication.v1.TokenReview instead. Same definition as oneOf_i100
Type: object
Deprecated. Please use io.k8s.api.authentication.v1.TokenReviewSpec instead. Same definition as spec
Type: object
Deprecated. Please use io.k8s.api.authentication.v1.TokenReviewStatus instead. Same definition as status
Type: object
Deprecated. Please use io.k8s.api.authentication.v1.UserInfo instead. Same definition as user
Type: object
Deprecated. Please use io.k8s.api.authentication.v1beta1.TokenReview instead. Same definition as oneOf_i104
Type: object
Deprecated. Please use io.k8s.api.authentication.v1beta1.TokenReviewSpec instead. Same definition as spec
Type: object
Deprecated. Please use io.k8s.api.authentication.v1beta1.TokenReviewStatus instead. Same definition as status
Type: object
Deprecated. Please use io.k8s.api.authentication.v1beta1.UserInfo instead. Same definition as user
Type: object
Deprecated. Please use io.k8s.api.authorization.v1.LocalSubjectAccessReview instead. Same definition as oneOf_i108
Type: object
Deprecated. Please use io.k8s.api.authorization.v1.NonResourceAttributes instead. Same definition as nonResourceAttributes
Type: object
Deprecated. Please use io.k8s.api.authorization.v1.ResourceAttributes instead. Same definition as resourceAttributes
Type: object
Deprecated. Please use io.k8s.api.authorization.v1.SelfSubjectAccessReview instead. Same definition as oneOf_i113
Type: object
Deprecated. Please use io.k8s.api.authorization.v1.SelfSubjectAccessReviewSpec instead. Same definition as spec
Type: object
Deprecated. Please use io.k8s.api.authorization.v1.SubjectAccessReview instead. Same definition as oneOf_i117
Type: object
Deprecated. Please use io.k8s.api.authorization.v1.SubjectAccessReviewSpec instead. Same definition as spec
Type: object
Deprecated. Please use io.k8s.api.authorization.v1.SubjectAccessReviewStatus instead. Same definition as status
Type: object
Deprecated. Please use io.k8s.api.authorization.v1beta1.LocalSubjectAccessReview instead. Same definition as oneOf_i121
Type: object
Deprecated. Please use io.k8s.api.authorization.v1beta1.NonResourceAttributes instead. Same definition as nonResourceAttributes
Type: object
Deprecated. Please use io.k8s.api.authorization.v1beta1.ResourceAttributes instead. Same definition as resourceAttributes
Type: object
Deprecated. Please use io.k8s.api.authorization.v1beta1.SelfSubjectAccessReview instead. Same definition as oneOf_i126
Type: object
Deprecated. Please use io.k8s.api.authorization.v1beta1.SelfSubjectAccessReviewSpec instead. Same definition as spec
Type: object
Deprecated. Please use io.k8s.api.authorization.v1beta1.SubjectAccessReview instead. Same definition as oneOf_i130
Type: object
Deprecated. Please use io.k8s.api.authorization.v1beta1.SubjectAccessReviewSpec instead. Same definition as spec
Type: object
Deprecated. Please use io.k8s.api.authorization.v1beta1.SubjectAccessReviewStatus instead. Same definition as status
Type: object
Deprecated. Please use io.k8s.api.autoscaling.v1.CrossVersionObjectReference instead. Same definition as oneOf_i134
Type: object
Deprecated. Please use io.k8s.api.autoscaling.v1.HorizontalPodAutoscaler instead. Same definition as oneOf_i135
Type: object
Deprecated. Please use io.k8s.api.autoscaling.v1.HorizontalPodAutoscalerList instead. Same definition as oneOf_i136
Type: object
Deprecated. Please use io.k8s.api.autoscaling.v1.HorizontalPodAutoscalerSpec instead. Same definition as spec
Type: object
Deprecated. Please use io.k8s.api.autoscaling.v1.HorizontalPodAutoscalerStatus instead. Same definition as status
Type: object
Deprecated. Please use io.k8s.api.autoscaling.v1.Scale instead. Same definition as oneOf_i139
Type: object
Deprecated. Please use io.k8s.api.autoscaling.v1.ScaleSpec instead. Same definition as spec
Type: object
Deprecated. Please use io.k8s.api.autoscaling.v1.ScaleStatus instead. Same definition as status
Type: object
Deprecated. Please use io.k8s.api.batch.v1.Job instead. Same definition as oneOf_i177
Type: object
Deprecated. Please use io.k8s.api.batch.v1.JobCondition instead. Same definition as oneOf_i177_status_conditions_items
Type: object
Deprecated. Please use io.k8s.api.batch.v1.JobList instead. Same definition as oneOf_i179
Type: object
Deprecated. Please use io.k8s.api.batch.v1.JobSpec instead. Same definition as spec
Type: object
Deprecated. Please use io.k8s.api.batch.v1.JobStatus instead. Same definition as status
Type: object
Deprecated. Please use io.k8s.api.batch.v2alpha1.CronJob instead. Same definition as oneOf_i187
Type: object
Deprecated. Please use io.k8s.api.batch.v2alpha1.CronJobList instead. Same definition as oneOf_i188
Type: object
Deprecated. Please use io.k8s.api.batch.v2alpha1.CronJobSpec instead. Same definition as spec
Type: object
Deprecated. Please use io.k8s.api.batch.v2alpha1.CronJobStatus instead. Same definition as status
Type: object
Deprecated. Please use io.k8s.api.batch.v2alpha1.JobTemplateSpec instead. Same definition as jobTemplate
Type: object
Deprecated. Please use io.k8s.api.certificates.v1beta1.CertificateSigningRequest instead. Same definition as oneOf_i192
Type: object
Deprecated. Please use io.k8s.api.certificates.v1beta1.CertificateSigningRequestCondition instead. Same definition as oneOf_i192_status_conditions_items
Type: object
Deprecated. Please use io.k8s.api.certificates.v1beta1.CertificateSigningRequestList instead. Same definition as oneOf_i194
Type: object
Deprecated. Please use io.k8s.api.certificates.v1beta1.CertificateSigningRequestSpec instead. Same definition as spec
Type: object
Deprecated. Please use io.k8s.api.certificates.v1beta1.CertificateSigningRequestStatus instead. Same definition as status
Type: object
Deprecated. Please use io.k8s.api.extensions.v1beta1.DaemonSet instead. Same definition as oneOf_i383
Type: object
Deprecated. Please use io.k8s.api.extensions.v1beta1.DaemonSetList instead. Same definition as oneOf_i385
Type: object
Deprecated. Please use io.k8s.api.extensions.v1beta1.DaemonSetSpec instead. Same definition as spec
Type: object
Deprecated. Please use io.k8s.api.extensions.v1beta1.DaemonSetStatus instead. Same definition as status
Type: object
Deprecated. Please use io.k8s.api.extensions.v1beta1.DaemonSetUpdateStrategy instead. Same definition as updateStrategy
Type: object
Deprecated. Please use io.k8s.api.extensions.v1beta1.Deployment instead. Same definition as oneOf_i389
Type: object
Deprecated. Please use io.k8s.api.extensions.v1beta1.DeploymentCondition instead. Same definition as oneOf_i389_status_conditions_items
Type: object
Deprecated. Please use io.k8s.api.extensions.v1beta1.DeploymentList instead. Same definition as oneOf_i391
Type: object
Deprecated. Please use io.k8s.api.extensions.v1beta1.DeploymentRollback instead. Same definition as oneOf_i392
Type: object
Deprecated. Please use io.k8s.api.extensions.v1beta1.DeploymentSpec instead. Same definition as spec
Type: object
Deprecated. Please use io.k8s.api.extensions.v1beta1.DeploymentStatus instead. Same definition as status
Type: object
Deprecated. Please use io.k8s.api.extensions.v1beta1.DeploymentStrategy instead. Same definition as strategy
Type: object
Deprecated. Please use io.k8s.api.extensions.v1beta1.FSGroupStrategyOptions instead. Same definition as oneOf_i396
Type: object
Deprecated. Please use io.k8s.api.extensions.v1beta1.HTTPIngressPath instead. Same definition as oneOf_i397
Type: object
Deprecated. Please use io.k8s.api.extensions.v1beta1.HTTPIngressRuleValue instead. Same definition as oneOf_i398
Type: object
Deprecated. Please use io.k8s.api.extensions.v1beta1.HostPortRange instead. Same definition as oneOf_i399
Type: object
Deprecated. Please use io.k8s.api.extensions.v1beta1.IDRange instead. Same definition as oneOf_i396_ranges_items
Type: object
Deprecated. Please use io.k8s.api.extensions.v1beta1.Ingress instead. Same definition as oneOf_i402
Type: object
Deprecated. Please use io.k8s.api.extensions.v1beta1.IngressBackend instead. Same definition as backend
Type: object
Deprecated. Please use io.k8s.api.extensions.v1beta1.IngressList instead. Same definition as oneOf_i404
Type: object
Deprecated. Please use io.k8s.api.extensions.v1beta1.IngressRule instead. Same definition as oneOf_i402_spec_rules_items
Type: object
Deprecated. Please use io.k8s.api.extensions.v1beta1.IngressSpec instead. Same definition as spec
Type: object
Deprecated. Please use io.k8s.api.extensions.v1beta1.IngressStatus instead. Same definition as status
Type: object
Deprecated. Please use io.k8s.api.extensions.v1beta1.IngressTLS instead. Same definition as oneOf_i402_spec_tls_items
Type: object
Deprecated. Please use io.k8s.api.extensions.v1beta1.NetworkPolicy instead. Same definition as oneOf_i409
Type: object
Deprecated. Please use io.k8s.api.extensions.v1beta1.NetworkPolicyIngressRule instead. Same definition as oneOf_i409_spec_ingress_items
Type: object
Deprecated. Please use io.k8s.api.extensions.v1beta1.NetworkPolicyList instead. Same definition as oneOf_i412
Type: object
Deprecated. Please use io.k8s.api.extensions.v1beta1.NetworkPolicyPeer instead. Same definition as oneOf_i409_spec_egress_items_to_items
Type: object
Deprecated. Please use io.k8s.api.extensions.v1beta1.NetworkPolicyPort instead. Same definition as oneOf_i409_spec_egress_items_ports_items
Type: object
Deprecated. Please use io.k8s.api.extensions.v1beta1.NetworkPolicySpec instead. Same definition as spec
Type: object
Deprecated. Please use io.k8s.api.extensions.v1beta1.PodSecurityPolicy instead. Same definition as oneOf_i416
Type: object
Deprecated. Please use io.k8s.api.extensions.v1beta1.PodSecurityPolicyList instead. Same definition as oneOf_i417
Type: object
Deprecated. Please use io.k8s.api.extensions.v1beta1.PodSecurityPolicySpec instead. Same definition as spec
Type: object
Deprecated. Please use io.k8s.api.extensions.v1beta1.ReplicaSet instead. Same definition as oneOf_i419
Type: object
Deprecated. Please use io.k8s.api.extensions.v1beta1.ReplicaSetCondition instead. Same definition as oneOf_i419_status_conditions_items
Type: object
Deprecated. Please use io.k8s.api.extensions.v1beta1.ReplicaSetList instead. Same definition as oneOf_i421
Type: object
Deprecated. Please use io.k8s.api.extensions.v1beta1.ReplicaSetSpec instead. Same definition as spec
Type: object
Deprecated. Please use io.k8s.api.extensions.v1beta1.ReplicaSetStatus instead. Same definition as status
Type: object
Deprecated. Please use io.k8s.api.extensions.v1beta1.RollbackConfig instead. Same definition as rollbackTo
Type: object
Deprecated. Please use io.k8s.api.extensions.v1beta1.RollingUpdateDaemonSet instead. Same definition as rollingUpdate
Type: object
Deprecated. Please use io.k8s.api.extensions.v1beta1.RollingUpdateDeployment instead. Same definition as rollingUpdate
Type: object
Deprecated. Please use io.k8s.api.extensions.v1beta1.RunAsUserStrategyOptions instead. Same definition as runAsUser
Type: object
Deprecated. Please use io.k8s.api.extensions.v1beta1.SELinuxStrategyOptions instead. Same definition as seLinux
Type: object
Deprecated. Please use io.k8s.api.extensions.v1beta1.Scale instead. Same definition as oneOf_i430
Type: object
Deprecated. Please use io.k8s.api.extensions.v1beta1.ScaleSpec instead. Same definition as spec
Type: object
Deprecated. Please use io.k8s.api.extensions.v1beta1.ScaleStatus instead. Same definition as status
Type: object
Deprecated. Please use io.k8s.api.extensions.v1beta1.SupplementalGroupsStrategyOptions instead. Same definition as supplementalGroups
Type: object
Deprecated. Please use io.k8s.api.networking.v1.NetworkPolicy instead. Same definition as oneOf_i435
Type: object
Deprecated. Please use io.k8s.api.networking.v1.NetworkPolicyIngressRule instead. Same definition as oneOf_i435_spec_ingress_items
Type: object
Deprecated. Please use io.k8s.api.networking.v1.NetworkPolicyList instead. Same definition as oneOf_i438
Type: object
Deprecated. Please use io.k8s.api.networking.v1.NetworkPolicyPeer instead. Same definition as oneOf_i435_spec_egress_items_to_items
Type: object
Deprecated. Please use io.k8s.api.networking.v1.NetworkPolicyPort instead. Same definition as oneOf_i435_spec_egress_items_ports_items
Type: object
Deprecated. Please use io.k8s.api.networking.v1.NetworkPolicySpec instead. Same definition as spec
Type: object
Deprecated. Please use io.k8s.api.policy.v1beta1.Eviction instead. Same definition as oneOf_i444
Type: object
Deprecated. Please use io.k8s.api.policy.v1beta1.PodDisruptionBudget instead. Same definition as oneOf_i448
Type: object
Deprecated. Please use io.k8s.api.policy.v1beta1.PodDisruptionBudgetList instead. Same definition as oneOf_i449
Type: object
Deprecated. Please use io.k8s.api.policy.v1beta1.PodDisruptionBudgetSpec instead. Same definition as spec
Type: object
Deprecated. Please use io.k8s.api.policy.v1beta1.PodDisruptionBudgetStatus instead. Same definition as status
Type: object
Deprecated. Please use io.k8s.api.rbac.v1alpha1.ClusterRole instead. Same definition as oneOf_i472
Type: object
Deprecated. Please use io.k8s.api.rbac.v1alpha1.ClusterRoleBinding instead. Same definition as oneOf_i473
Type: object
Deprecated. Please use io.k8s.api.rbac.v1alpha1.ClusterRoleBindingList instead. Same definition as oneOf_i474
Type: object
Deprecated. Please use io.k8s.api.rbac.v1alpha1.ClusterRoleList instead. Same definition as oneOf_i475
Type: object
Deprecated. Please use io.k8s.api.rbac.v1alpha1.PolicyRule instead. Same definition as oneOf_i472_rules_items
Type: object
Deprecated. Please use io.k8s.api.rbac.v1alpha1.Role instead. Same definition as oneOf_i477
Type: object
Deprecated. Please use io.k8s.api.rbac.v1alpha1.RoleBinding instead. Same definition as oneOf_i478
Type: object
Deprecated. Please use io.k8s.api.rbac.v1alpha1.RoleBindingList instead. Same definition as oneOf_i479
Type: object
Deprecated. Please use io.k8s.api.rbac.v1alpha1.RoleList instead. Same definition as oneOf_i480
Type: object
Deprecated. Please use io.k8s.api.rbac.v1alpha1.RoleRef instead. Same definition as roleRef
Type: object
Deprecated. Please use io.k8s.api.rbac.v1alpha1.Subject instead. Same definition as oneOf_i473_subjects_items
Type: object
Deprecated. Please use io.k8s.api.rbac.v1beta1.ClusterRole instead. Same definition as oneOf_i484
Type: object
Deprecated. Please use io.k8s.api.rbac.v1beta1.ClusterRoleBinding instead. Same definition as oneOf_i485
Type: object
Deprecated. Please use io.k8s.api.rbac.v1beta1.ClusterRoleBindingList instead. Same definition as oneOf_i486
Type: object
Deprecated. Please use io.k8s.api.rbac.v1beta1.ClusterRoleList instead. Same definition as oneOf_i487
Type: object
Deprecated. Please use io.k8s.api.rbac.v1beta1.PolicyRule instead. Same definition as oneOf_i484_rules_items
Type: object
Deprecated. Please use io.k8s.api.rbac.v1beta1.Role instead. Same definition as oneOf_i489
Type: object
Deprecated. Please use io.k8s.api.rbac.v1beta1.RoleBinding instead. Same definition as oneOf_i490
Type: object
Deprecated. Please use io.k8s.api.rbac.v1beta1.RoleBindingList instead. Same definition as oneOf_i491
Type: object
Deprecated. Please use io.k8s.api.rbac.v1beta1.RoleList instead. Same definition as oneOf_i492
Type: object
Deprecated. Please use io.k8s.api.rbac.v1beta1.RoleRef instead. Same definition as roleRef
Type: object
Deprecated. Please use io.k8s.api.rbac.v1beta1.Subject instead. Same definition as oneOf_i485_subjects_items
Type: object
Deprecated. Please use io.k8s.api.settings.v1alpha1.PodPreset instead. Same definition as oneOf_i499
Type: object
Deprecated. Please use io.k8s.api.settings.v1alpha1.PodPresetList instead. Same definition as oneOf_i500
Type: object
Deprecated. Please use io.k8s.api.settings.v1alpha1.PodPresetSpec instead. Same definition as spec
Type: object
Deprecated. Please use io.k8s.api.storage.v1.StorageClass instead. Same definition as oneOf_i502
Type: object
Deprecated. Please use io.k8s.api.storage.v1.StorageClassList instead. Same definition as oneOf_i503
Type: object
Deprecated. Please use io.k8s.api.storage.v1beta1.StorageClass instead. Same definition as oneOf_i516
Type: object
Deprecated. Please use io.k8s.api.storage.v1beta1.StorageClassList instead. Same definition as oneOf_i517